docs update
This commit is contained in:
parent
79977cc655
commit
be4bbf25f8
|
|
@ -65,16 +65,14 @@ utils/local_install.sh
|
||||||
(read-url "https://api.nasdaq.com/api/calendar/dividends/") ; hangs in sslclient.cpp line 132
|
(read-url "https://api.nasdaq.com/api/calendar/dividends/") ; hangs in sslclient.cpp line 132
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
- tcp-client, add support for list of requests returning list of responses
|
|
||||||
- add debug support, at least call stack
|
- add debug support, at least call stack
|
||||||
- multiline editing (see kilocpp editor)
|
- multiline editing (see kilocpp editor)
|
||||||
- execute system command should capture stderr
|
- execute system command should capture stderr
|
||||||
- add some mem stats to benchmark
|
- add some mem stats to benchmark
|
||||||
|
|
||||||
#### Code
|
#### Code
|
||||||
- MlEnvironment::get should be map instead of many if's
|
|
||||||
- tcpnet should use RAII
|
- tcpnet should use RAII
|
||||||
- add documentation
|
- add documentation - some code lide (doc::add func_name desc example flags), (doc::help name), (doc::appropos text)
|
||||||
- add more unit test, mainly for usql
|
- add more unit test, mainly for usql
|
||||||
- add instrumentation (time, nr of evals, num of atoms, debug info, debug environment etc)
|
- add instrumentation (time, nr of evals, num of atoms, debug info, debug environment etc)
|
||||||
|
|
||||||
|
|
@ -86,6 +84,7 @@ utils/local_install.sh
|
||||||
- decode-universal-time (http://www.lispworks.com/documentation/HyperSpec/Body/f_dec_un.htm)
|
- decode-universal-time (http://www.lispworks.com/documentation/HyperSpec/Body/f_dec_un.htm)
|
||||||
- env functions
|
- env functions
|
||||||
- get-env, set-env; set-env cannot be implemented in stdlib.lsp, because popen is in fact subshell
|
- get-env, set-env; set-env cannot be implemented in stdlib.lsp, because popen is in fact subshell
|
||||||
|
- version should include whether build is debug build
|
||||||
|
|
||||||
#### Performance
|
#### Performance
|
||||||
- push_back - repeatedly without reserving size
|
- push_back - repeatedly without reserving size
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
|`(first list)`|Returns first element of a list|First element|
|
|`(first list)`|Returns first element of a list|First element|
|
||||||
|`(last list)`|Returns last element of list|Last element|
|
|`(last list)`|Returns last element of list|Last element|
|
||||||
|`(range low high)`|Returns list with elements in range low .. high|`(range 1 5) => (1 2 3 4)`|
|
|`(range low high)`|Returns list with elements in range low .. high|`(range 1 5) => (1 2 3 4)`|
|
||||||
|`(member list item)`|Returns true (1) when list contains item||
|
|`(member list item)`|Returns true when list contains item||
|
||||||
|`(uniq list)`|Returns list with removed duplicates ||
|
|`(uniq list)`|Returns list with removed duplicates ||
|
||||||
|`(make-list len)`|Return list with len nil elements|`(make-list 3) => (nil nil nil)`|
|
|`(make-list len)`|Return list with len nil elements|`(make-list 3) => (nil nil nil)`|
|
||||||
|`(make-list-of len value)`|Return list with len value elements||
|
|`(make-list-of len value)`|Return list with len value elements||
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue