Skip to main content

Insert

Type Alias Insert 

Source
pub type Insert<T, E> = <T as Push>::Output<E>;
Expand description

Type alias for adding a new member to a type set.

ยงExample

assert::eq::<Insert<(i32,), i16>, (i16, i32)>();