Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. [Native("stdlib::USize")]
  2. public expand usize {
  3. [Native("toHexString")]
  4. public extern toHexString() as string;
  5. [Native("min")]
  6. public static min(a as usize, b as usize) as usize
  7. => a < b ? a : b;
  8. [Native("max")]
  9. public static max(a as usize, b as usize) as usize
  10. => a > b ? a : b;
  11. }