repl.txt (424B)
1 2 {{alias}}( idx, max ) 3 Wraps an index on the interval `[0,max]`. 4 5 Parameters 6 ---------- 7 idx: integer 8 Index to wrap. 9 10 max: integer 11 Maximum index value. 12 13 Returns 14 ------- 15 out: integer 16 Wrapped index. 17 18 Examples 19 -------- 20 > var idx = {{alias}}( 2, 10 ) 21 2 22 > idx = {{alias}}( -4, 10 ) 23 7 24 > idx = {{alias}}( 13, 10 ) 25 2 26 27 See Also 28 -------- 29