Ad
  • Custom User Avatar

    You should never mutate inputs, unless it's specified in the contract. Doing this is generating side effects (ie changing the state of the universe outside of the function), and you don't want to code like that. => Rust is right, here.

  • Custom User Avatar

    Looks clean! I'm in the process of learning Rust and I didn't even know about fold. Thank you!