[][src]Macro over::arr

macro_rules! arr {
    [] => { ... };
    [ $( $elem:expr ),+ , ] => { ... };
    [ $( $elem:expr ),+ ] => { ... };
}

Given a list of elements, converts each element to a Value and returns an Arr containing a vector of the values. For a non-panicking version, see try_arr!.

Panics

Panics if the types don't check out.