TwoVec: A Very Silly Container
Lets say you want to store two different types of objects in 1 container. Simple right? Just slap those puppies in a tuple and you're good to go:
let list: = vec!;
But what if you wanted to include elements of two different types in arbitrary orders? Thankfully, there's sum types for that:
pub
...
One small problem. That's wasteful.