macro_rules! state_args {
() => { ... };
($single:expr) => { ... };
($($multiple:expr),*) => { ... };
}
Expand description
Construct state arguments.
Used for reading and decoding the program’s transformed state,
see Program::read_state_using_wasm
for example.