Macro linspace

Source
macro_rules! linspace {
    ($start:expr, $stop:expr) => { ... };
    ($start:expr, $stop:expr, stream = $stream:expr) => { ... };
    ($start:expr, $stop:expr, dtype = $dtype:ty) => { ... };
    ($start:expr, $stop:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
    ($start:expr, $stop:expr, count = $count:expr) => { ... };
    ($start:expr, $stop:expr, count = $count:expr, stream = $stream:expr) => { ... };
    ($start:expr, $stop:expr, count = $count:expr, dtype = $dtype:ty) => { ... };
    (
        $start:expr, $stop:expr, count = $count:expr, dtype = $dtype:ty,
        stream = $stream:expr
    ) => { ... };
}
Expand description

Macro generated for the function crate::ops::linspace. See the function documentation for more details.