Macro split_array

Source
macro_rules! split_array {
    ($array:expr, $size:expr) => { ... };
    ($array:expr, $size0:expr, $($sizes:expr),+) => { ... };
}
Expand description

Split the provided array into the specified sizes.