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