Type Alias Exactly

Source
pub type Exactly<const N: usize, T, D = Nothing> = Repeats<N, N, T, D>;
Expand description

Exactly N of T delimited by D or Nothing

Aliased Type§

pub struct Exactly<const N: usize, T, D = Nothing>(pub Vec<Delimited<T, D>>);

Tuple Fields§

§0: Vec<Delimited<T, D>>