From 03f050bcfb3d7ea070168821cb4d94b7b9ed3879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Mon, 30 Aug 2021 23:09:42 +0200 Subject: [PATCH] Update doc --- doc/use.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/use.md b/doc/use.md index 616e6b3..e4118bf 100644 --- a/doc/use.md +++ b/doc/use.md @@ -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 ...