macro_rules! wasi_try_ok {
($expr:expr) => { ... };
}
Expand description
Like the try!
macro or ?
syntax: returns the value if the computation
succeeded or returns the error value. Results are wrapped in an Ok
macro_rules! wasi_try_ok {
($expr:expr) => { ... };
}
Like the try!
macro or ?
syntax: returns the value if the computation
succeeded or returns the error value. Results are wrapped in an Ok