aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormryouse2022-06-04 02:05:32 +0000
committermryouse2022-06-04 02:05:32 +0000
commitb395d5d1cd122bb07017f23110f76249398a61bb (patch)
tree1bfd23e47d9a11c55353444c4a7853eaa94a7a53 /README.md
parentc1e97e348c5dbac6ddd085509582a01af2cb45bb (diff)
add first-char, rest-char, slice
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9722129..cfc43ec 100644
--- a/README.md
+++ b/README.md
@@ -42,9 +42,11 @@
- `(/ [num :number] [denom :number]) => :number`
### string
+ - `(first-char [arg :string]) => :string`
- `(concat [arg :string] [many :string]) => :string`
- `(join [arg :list] [join-val :string]) => :string`
- `(newline) => :string`
+ - `(rest-char [arg :string]) => :string`
- `(split [arg :string] [split-val :string]) => :list`
- `(strip [arg :string]) => :string`
@@ -94,6 +96,7 @@
- `(list-reverse [arg :list]) => :int`
- `(rest [arg :list]) => :any ; cdr`
- `(shuf [arg :list]) => :list ; shuffle the elements of the list`
+ - `(slice [arg :list] [start-idx :int] [[length :int]]) => :list`
- `(zip [arg1 :list] [arg2 :list]) => :list`
### "higher order"