macro_rules! to_bytes { ($value:expr) => { ... }; }
Converts an integer to a byte array
use we_cdk::*; #[action] fn _constructor() { let result: Binary = to_bytes!(31337); }