diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-03-25 23:59:59 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-03-27 17:25:34 -0700 |
commit | 859f35fbe2f6a78157b875e12eb7dc8cd95c1152 (patch) | |
tree | 06c6e2dadbd7719ca48345796ee8c4c575860cd8 /index.html | |
parent | 3589c440a872f6e622d9fe62af83b4fe69114add (diff) | |
download | mu-859f35fbe2f6a78157b875e12eb7dc8cd95c1152.tar.gz |
2811
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html index d0333cf8..e4909263 100644 --- a/index.html +++ b/index.html @@ -106,7 +106,7 @@ recipes pass arguments or 'ingredients' without introducing any syntax and breaking the metaphor of recipes as lists of instructions. <br/><a href='html/036call_reply.cc.html'>036call_reply.cc</a>: recipes can return arbitrary numbers of values to their callers. -<br/><a href='html/038new.cc.html'>038new.cc</a>: rudimentary memory +<br/><a href='html/037new.cc.html'>037new.cc</a>: rudimentary memory allocator that is aware of all global types in any Mu program. <br/><a href='html/061recipe.cc.html'>061recipe.cc</a>: passing recipes around as first-class values in higher-order functions. @@ -181,9 +181,9 @@ writing from them to stall without taking up CPU resources. node points to the next, permitting fast insertion/deletion but slow for search. <br/><a href='html/074random.cc.html'>074random.cc</a> -<br/><a href='html/075duplex_list.mu'>075duplex_list.mu</a>: doubly linked -lists that can be traversed both forwards and back. -<br/><a href='html/076stream.mu'>076stream.mu</a>: data structure to +<br/><a href='html/075duplex_list.mu.html'>075duplex_list.mu</a>: doubly +linked lists that can be traversed both forwards and back. +<br/><a href='html/076stream.mu.html'>076stream.mu</a>: data structure to efficiently append strings. <p><b>Part V</b>: Nascent tools for browsing Mu codebases, and for teaching |