gnucash/libgnucash/scm
Christopher Lam fbc7c9027e [scm/utilities] even more efficient list-flatten functions
because:

* list? is O(N), because it needs to test for an improper
list. improper lists are lists whose last pair's cdr cell is not
'(). null? and pair? are both O(1).

* avoids reverse which is also O(N): guile has unlimited stack
therefore we can do non-tail-call loop first to pass as parameter to
the tail-call loop. this removes the need for prepend-and-reverse.
2019-11-19 19:28:27 +08:00
..
test [utilities] move gnc:html-string-sanitize to utilities.scm 2019-09-22 22:48:07 +08:00
CMakeLists.txt completion wrap qoflog 2019-07-07 08:41:13 +08:00
price-quotes.scm [price-quotes] remove no F::Q message 2019-08-15 13:18:16 +08:00
utilities.scm [scm/utilities] even more efficient list-flatten functions 2019-11-19 19:28:27 +08:00