Macro create_matrix_row

Source
macro_rules! create_matrix_row {
    ($($x:expr), *) => { ... };
}
Expand description

Macro the create a matrix row.

ยงExamples

use matrix::create_matrix_row;

// This row contains two columns
let row = create_matrix_row!(1.0, 2.0);