@@ -8,29 +8,29 @@ Note: this table assumes Nu 0.43 or later.
88| ------------------------------------------------| ------------------------------| ---------------------------------| --------------------------|
99| [ append] ( ../commands/docs/append.md ) | conj, into, concat | append, (++), concat, concatMap | (++) |
1010| [ into binary] ( ../commands/docs/into_binary.md ) | Integer/toHexString | | showHex |
11- | count | count | length, size | length, size |
11+ | [ length ] ( ../commands/docs/length.md ) | count | length, size | length, size |
1212| [ date] ( ../commands/docs/date.md ) | java.time.LocalDate/now | | |
1313| [ each] ( ../commands/docs/each.md ) | map, mapv, iterate | map, forEach | map, mapM |
1414| [ exit] ( ../commands/docs/each.md ) | System/exit | | |
1515| [ first] ( ../commands/docs/first.md ) | first | head | head |
1616| [ format] ( ../commands/docs/format.md ) | format | | Text.Printf.printf |
1717| [ group-by] ( ../commands/docs/group-by.md ) | group-by | | group, groupBy |
18- | help | doc | | |
18+ | [ help] ( ../cookbook/help.md ) | doc | | |
1919| [ is-empty] ( ../commands/docs/is-empty.md ) | empty? | isEmpty | |
2020| [ last] ( ../commands/docs/last.md ) | last, peek, take-last | last | last |
2121| [ lines] ( ../commands/docs/lines.md ) | | | lines, words, split-with |
2222| [ match] ( ../commands/docs/match.md ) | | match (Ocaml), case (Elm) | case |
23- | nth | nth | Array.get | lookup |
23+ | [ select ] ( ../commands/docs/select.md ) | nth | Array.get | lookup |
2424| [ open] ( ../commands/docs/open.md ) | with-open | | |
2525| [ transpose] ( ../commands/docs/transpose.md ) | (apply mapv vector matrix) | | transpose |
2626| [ prepend] ( ../commands/docs/prepend.md ) | cons | cons, :: | :: |
2727| [ print] ( ../commands/docs/print.md ) | println | | putStrLn, print |
28- | range , 1..10 | range | range | 1..10, 'a'..'f' |
28+ | [ slice ] ( ../commands/docs/slice.md ) , 1..10 | range | range | 1..10, 'a'..'f' |
2929| [ reduce] ( ../commands/docs/reduce.md ) | reduce, reduce-kv | foldr | foldr |
3030| [ reverse] ( ../commands/docs/reverse.md ) | reverse, rseq | reverse, reverseInPlace | reverse |
3131| [ select] ( ../commands/docs/select.md ) | select-keys | | |
3232| [ shuffle] ( ../commands/docs/shuffle.md ) | shuffle | | |
33- | size | count | | size, length |
33+ | [ length ] ( ../commands/docs/length.md ) | count | | size, length |
3434| [ skip] ( ../commands/docs/skip.md ) | rest | tail | tail |
3535| [ skip until] ( ../commands/docs/skip_until.md ) | drop-while | | |
3636| [ skip while] ( ../commands/docs/skip_while.md ) | drop-while | dropWhile | dropWhile, dropWhileEnd |
@@ -39,10 +39,9 @@ Note: this table assumes Nu 0.43 or later.
3939| [ str] ( ../commands/docs/str.md ) | clojure.string functions | String functions | |
4040| [ str join] ( ../commands/docs/str_join.md ) | join | concat | intercalate |
4141| [ str trim] ( ../commands/docs/str_trim.md ) | trim, triml, trimr | trim, trimLeft, trimRight | strip |
42- | sum | apply + | sum | sum |
42+ | [ math sum ] ( ../commands/docs/math_sum.md ) | apply + | sum | sum |
4343| [ take] ( ../commands/docs/take.md ) | take, drop-last, pop | take, init | take, init |
4444| [ take until] ( ../commands/docs/take_until.md ) | take-while | takeWhile | takeWhile |
4545| [ take while] ( ../commands/docs/take_while.md ) | take-while | takeWhile | takeWhile |
4646| [ uniq] ( ../commands/docs/uniq.md ) | set | Set.empty | Data.Set |
4747| [ where] ( ../commands/docs/where.md ) | filter, filterv, select | filter, filterMap | filter |
48-
0 commit comments