Believe it or not, this has been implemented, and in a manner which is a thousand times simpler than all of my previous attempts at it.
(the key to this was twofold: Killing the Structure type, and using Rc<[T]> to eliminate the question of ownership in high-level application logic that ought not be worrying about such a thing in the first place)
Believe it or not, this has been implemented, and in a manner which is a thousand times simpler than all of my previous attempts at it.
(the key to this was twofold: Killing the
Structure
type, and usingRc<[T]>
to eliminate the question of ownership in high-level application logic that ought not be worrying about such a thing in the first place)