[][src]Macro solana_reed_solomon_erasure::shards

macro_rules! shards {
    (
        $( [ $( $x:expr ),* ] ),*
    ) => { ... };
}

Constructs vector of shards.

Example

let shards = shards!([1, 2, 3],
                     [4, 5, 6]);