Trait Chainablepub

Source
:trait(pub) Chainable
  .chain ( (Self elem) (Self elem)  (Self elem) )
Description

Trait for collections that can be concatenated end-to-end.

Required Methods

.chain ( (Self elem) (Self elem) (Self elem) )

Produce a single collection containing every element of the first followed by every element of the second, in iteration order. ( (Self elem) (Self elem) -> (Self elem) )

Implementors

impl Chainable for Vec