Currently tl implements its own "smallvec" kind of type that can store up to N elements on the stack and move it to the heap if the max stack capacity is reached. It used to be slightly different and have some specialized methods when this crate looked a lot different, but now I think SmallVec is pretty much a drop in replacement for this InlineVec type
Currently tl implements its own "smallvec" kind of type that can store up to N elements on the stack and move it to the heap if the max stack capacity is reached. It used to be slightly different and have some specialized methods when this crate looked a lot different, but now I think SmallVec is pretty much a drop in replacement for this InlineVec type