Update doc
This commit is contained in:
parent
089920e4d3
commit
03f050bcfb
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,8 @@ isum(i1); // 6
|
|||
icat(iarray(["a", "b", "c"])); // abc
|
||||
imin(i1); // 1
|
||||
imax(i1); // 3
|
||||
iminBy(i1, (x) => -x); // 3
|
||||
imaxBy(i1, (x) => -x); // 1
|
||||
|
||||
// Transform iterables
|
||||
iloop(i1); // 1 2 3 1 2 3 ...
|
||||
|
|
Loading…
Reference in a new issue