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.
12345 |
- public expand usize .. usize {
- public withBounds(bounds as usize .. usize) as usize .. usize {
- return (from < bounds.from ? bounds.from : from) .. (to > bounds.to ? bounds.to : to);
- }
- }
|