Skip to main content

Seq

Type Alias Seq 

Source
pub type Seq<T> = LogosSeq<T>;
Expand description

Ordered sequences with reference semantics.

Aliased Type§

pub struct Seq<T>(pub Rc<RefCell<Vec<T>>>);

Tuple Fields§

§0: Rc<RefCell<Vec<T>>>