Add missing aliases

This commit is contained in:
Vincent Ollivier 2023-07-02 09:33:57 +02:00
parent f806c3a338
commit 111933fafc
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ MOROS Lisp is a Lisp-1 dialect inspired by Scheme, Clojure, and Ruby!
- Trigonometric functions: `acos`, `asin`, `atan`, `cos`, `sin`, `tan`
- Comparisons: `>`, `<`, `>=`, `<=`, `=`
- Enumerable: `length` (aliased to `len`), `nth`, `first`, `second`, `third`, `last`, `rest`, `slice`
- String: `string.trim`, `string.split`
- String: `string.trim` and `string.split` (aliased to `str.trim` and `str.split`)
- List: `concat`, `chunks`, `sort`, `unique` (aliased to `uniq`), `min`, `max`
- File: `file.size`, `file.open`, `file.close`, `file.read`, `file.write`

View File

@ -67,7 +67,7 @@ of the Shell.</p>
<li>Trigonometric functions: <code>acos</code>, <code>asin</code>, <code>atan</code>, <code>cos</code>, <code>sin</code>, <code>tan</code></li>
<li>Comparisons: <code>&gt;</code>, <code>&lt;</code>, <code>&gt;=</code>, <code>&lt;=</code>, <code>=</code></li>
<li>Enumerable: <code>length</code> (aliased to <code>len</code>), <code>nth</code>, <code>first</code>, <code>second</code>, <code>third</code>, <code>last</code>, <code>rest</code>, <code>slice</code></li>
<li>String: <code>string.trim</code>, <code>string.split</code></li>
<li>String: <code>string.trim</code> and <code>string.split</code> (aliased to <code>str.trim</code> and <code>str.split</code>)</li>
<li>List: <code>concat</code>, <code>chunks</code>, <code>sort</code>, <code>unique</code> (aliased to <code>uniq</code>), <code>min</code>, <code>max</code></li>
<li>File: <code>file.size</code>, <code>file.open</code>, <code>file.close</code>, <code>file.read</code>, <code>file.write</code></li>
</ul>