macro_rules! var_axis {
($array:expr, $axis:expr) => { ... };
($array:expr, $axis:expr, stream = $stream:expr) => { ... };
($array:expr, $axis:expr, keep_dims = $keep_dims:expr) => { ... };
($array:expr, $axis:expr, keep_dims = $keep_dims:expr, stream = $stream:expr) => { ... };
($array:expr, $axis:expr, ddof = $ddof:expr) => { ... };
($array:expr, $axis:expr, ddof = $ddof:expr, stream = $stream:expr) => { ... };
($array:expr, $axis:expr, keep_dims = $keep_dims:expr, ddof = $ddof:expr) => { ... };
(
$array:expr, $axis:expr, keep_dims = $keep_dims:expr, ddof =
$ddof:expr, stream = $stream:expr
) => { ... };
($array:expr, $axis:expr, keep_dims = $keep_dims:expr, ddof = $ddof:expr) => { ... };
(
$array:expr, $axis:expr, keep_dims = $keep_dims:expr, ddof =
$ddof:expr, stream = $stream:expr
) => { ... };
}
Expand description
Macro generated for the function crate::ops::var_axis
. See the function documentation for more details.