Macro all

Source
macro_rules! all {
    ($array:expr) => { ... };
    ($array:expr, stream = $stream:expr) => { ... };
    ($array:expr, axes = $axes:expr) => { ... };
    ($array:expr, axes = $axes:expr, stream = $stream:expr) => { ... };
    ($array:expr, keep_dims = $keep_dims:expr) => { ... };
    ($array:expr, keep_dims = $keep_dims:expr, stream = $stream:expr) => { ... };
    ($array:expr, axes = $axes:expr, keep_dims = $keep_dims:expr) => { ... };
    (
        $array:expr, axes = $axes:expr, keep_dims = $keep_dims:expr, stream =
        $stream:expr
    ) => { ... };
    ($array:expr, axes = $axes:expr, keep_dims = $keep_dims:expr) => { ... };
    (
        $array:expr, axes = $axes:expr, keep_dims = $keep_dims:expr, stream =
        $stream:expr
    ) => { ... };
}
Expand description

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