ZenScript main repository
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ExpandRangeUsize.zs 201B

12345
  1. public expand usize .. usize {
  2. public withBounds(bounds as usize .. usize) as usize .. usize {
  3. return (from < bounds.from ? bounds.from : from) .. (to > bounds.to ? bounds.to : to);
  4. }
  5. }