Update doc

This commit is contained in:
Michaël Lemaire 2021-08-30 23:09:42 +02:00
parent 089920e4d3
commit 03f050bcfb

View file

@ -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 ...