pub type Seq<T> = LogosSeq<T>;
Ordered sequences with reference semantics.
pub struct Seq<T>(pub Rc<RefCell<Vec<T>>>);
0: Rc<RefCell<Vec<T>>>