doc update
This commit is contained in:
parent
c536c6e091
commit
fb4c23be33
11
Readme.md
11
Readme.md
|
|
@ -65,7 +65,8 @@ utils/local_install.sh
|
||||||
|
|
||||||
|
|
||||||
### KNOWNN BUGS
|
### KNOWNN BUGS
|
||||||
(read-url "https://api.nasdaq.com/api/calendar/dividends/") ; hangs in sslclient.cpp line 132
|
- in (include "file.lsp") are not available stdlib.lsp finctions like (string-trim ..) etc
|
||||||
|
- (read-url "https://api.nasdaq.com/api/calendar/dividends/") ; hangs in sslclient.cpp line 132
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
- add functions from stdlib into doc
|
- add functions from stdlib into doc
|
||||||
|
|
@ -77,6 +78,12 @@ utils/local_install.sh
|
||||||
- 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
|
||||||
|
- order of arguments in functions like member and filter - filter swap lambda and list
|
||||||
|
|
||||||
|
#### Doc
|
||||||
|
- fix man entry on (member) example and retval
|
||||||
|
- doc for set!
|
||||||
|
- doc for doc::??? functions
|
||||||
|
|
||||||
#### Code
|
#### Code
|
||||||
- tcpnet should use RAII
|
- tcpnet should use RAII
|
||||||
|
|
@ -92,11 +99,9 @@ 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
|
||||||
- range - with for(int i...) and reserving result size can be 3times faster on (range 1 10000)
|
|
||||||
- mini_sprintf - unnecesary copying between vector and list
|
- mini_sprintf - unnecesary copying between vector and list
|
||||||
- (do, scope, cond ..) repeatedly assign to acc
|
- (do, scope, cond ..) repeatedly assign to acc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue