diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-11-06 22:39:38 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-11-06 22:39:38 -0800 |
commit | 704716286242e65375595fe30742f1c3fd8123a0 (patch) | |
tree | 0f547e894f0feb4a8ff6e005c59e706bee8dac20 /index.html | |
parent | 2947699733b229106bba5c8aa5a3146f0814bf68 (diff) | |
download | mu-704716286242e65375595fe30742f1c3fd8123a0.tar.gz |
3641
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/index.html b/index.html index 1d9dd349..8a923ee0 100644 --- a/index.html +++ b/index.html @@ -135,8 +135,9 @@ fast insertion and deletion and unidirectional scanning but slow search; <a href='html/065duplex_list.mu.html'><em>duplex lists</em></a> that permit bidirectional scanning; <a href='html/070table.mu.html'>associative arrays or <em>tables</em></a> for fast insertion, deletion and search using <a href='html/069hash.cc.html'>hash</a> -functions; and <a href='html/066stream.mu.html'><em>streams</em></a> for -gradually constructing long strings in a piecemeal fashion. +functions; <a href='html/066stream.mu.html'><em>streams</em></a> for scanning +through strings incrementally; and <a href='html/061text.mu.html'><em>buffers</em></a> +for gradually constructing long strings in a piecemeal fashion. <p/>Dynamic memory management: Mu supports <a href='html/034address.cc.html'>allocating</a> space at run-time as pointers or <em>addresses</em>. All Mu instructions can |