Macro gumbel

Source
macro_rules! gumbel {
    () => { ... };
    (stream = $stream:expr) => { ... };
    (dtype = $dtype:ty) => { ... };
    (dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (shape = $shape:expr) => { ... };
    (shape = $shape:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, dtype = $dtype:ty) => { ... };
    (shape = $shape:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (key = $key:expr) => { ... };
    (key = $key:expr, stream = $stream:expr) => { ... };
    (key = $key:expr, dtype = $dtype:ty) => { ... };
    (key = $key:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, dtype = $dtype:ty) => { ... };
    (
        shape = $shape:expr, key = $key:expr, dtype = $dtype:ty, stream =
        $stream:expr
    ) => { ... };
    (shape = $shape:expr, key = $key:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, dtype = $dtype:ty) => { ... };
    (
        shape = $shape:expr, key = $key:expr, dtype = $dtype:ty, stream =
        $stream:expr
    ) => { ... };
}
Expand description

Macro generated for the function crate::random::gumbel. See the function documentation for more details.