macro_rules! index_box {
($($tokens:tt)*) => { ... };
}
Expand description
A macro similar to the stdlib’s vec![]
, but producing an
Box<IndexSlice<I, [T]>>
(That is, an IndexBox<I, [T]>
).
macro_rules! index_box {
($($tokens:tt)*) => { ... };
}
A macro similar to the stdlib’s vec![]
, but producing an
Box<IndexSlice<I, [T]>>
(That is, an IndexBox<I, [T]>
).