to_bytes

Macro to_bytes 

Source
macro_rules! to_bytes {
    ($value:expr) => { ... };
}
Expand description

Converts an integer to a byte array

ยงUsage

use we_cdk::*;

#[action]
fn _constructor() {
    let result: Binary = to_bytes!(31337);
}