6.1 - Other Collections
so far: only seen List. → more (immutable) collections.
vector
List: is linear -- access to head is faster than middle or end element. Vector: better rand access performance.
represented as very shallow trees(32-split at each node)

Vector support similar operations as List (head, tail,map, fold …