From be4bbf25f84b1f5e4ea40032bd34bd8daf0c7048 Mon Sep 17 00:00:00 2001 From: vaclavt Date: Tue, 11 Jan 2022 23:45:16 +0100 Subject: [PATCH] docs update --- Readme.md | 5 ++--- doc/Doc.md | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 2f938d0..6cc69a8 100644 --- a/Readme.md +++ b/Readme.md @@ -65,16 +65,14 @@ utils/local_install.sh (read-url "https://api.nasdaq.com/api/calendar/dividends/") ; hangs in sslclient.cpp line 132 ### TODO -- tcp-client, add support for list of requests returning list of responses - add debug support, at least call stack - multiline editing (see kilocpp editor) - execute system command should capture stderr - add some mem stats to benchmark #### Code -- MlEnvironment::get should be map instead of many if's - 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 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) - env functions - 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 - push_back - repeatedly without reserving size diff --git a/doc/Doc.md b/doc/Doc.md index 3446062..1848413 100644 --- a/doc/Doc.md +++ b/doc/Doc.md @@ -63,7 +63,7 @@ |`(first list)`|Returns first element of a list|First 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)`| -|`(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 || |`(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||