about summary refs log tree commit diff stats
path: root/html/063list.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-25 22:27:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-25 22:27:19 -0700
commitc5ffb6e1cc9c5ff880d037c53b8ebc8562be0008 (patch)
tree2d05d987ec3c81bfbb0c1f598966d9d1b16e9b1f /html/063list.mu.html
parentb2757892d553352feb59d70b1e7241ccdafa6905 (diff)
downloadmu-c5ffb6e1cc9c5ff880d037c53b8ebc8562be0008.tar.gz
1459
Diffstat (limited to 'html/063list.mu.html')
-rw-r--r--html/063list.mu.html97
1 files changed, 97 insertions, 0 deletions
diff --git a/html/063list.mu.html b/html/063list.mu.html
new file mode 100644
index 00000000..da699d87
--- /dev/null
+++ b/html/063list.mu.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>063list.mu</title>
+<meta name="Generator" content="Vim/7.4">
+<meta name="plugin-version" content="vim7.4_v1">
+<meta name="syntax" content="none">
+<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
+<meta name="colorscheme" content="minimal">
+<style type="text/css">
+<!--
+pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #000000; }
+body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
+* { font-size: 1em; }
+.CommentedCode { color: #6c6c6c; }
+.muRecipe { color: #ff8700; }
+.muScenario { color: #00af00; }
+.Comment { color: #8080ff; }
+.Constant { color: #008080; }
+.Special { color: #ff6060; }
+.Identifier { color: #008080; }
+-->
+</style>
+
+<script type='text/javascript'>
+<!--
+
+-->
+</script>
+</head>
+<body>
+<pre id='vimCodeElement'>
+<span class="Comment"># A list links up multiple objects together to make them easier to manage.</span>
+<span class="Comment">#</span>
+<span class="Comment"># Try to make all objects in a single list of the same type, it'll help avoid bugs.</span>
+<span class="Comment"># If you want to store multiple types in a single list, use an exclusive-container.</span>
+
+container list [
+  value:location
+  next:address:list
+]
+
+<span class="Comment"># result:address:list &lt;- push x:location, in:address:list</span>
+<span class="muRecipe">recipe</span> push [
+  <span class="Identifier">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  x:location<span class="Special"> &lt;- </span><span class="Identifier">next-ingredient</span>
+  in:address:list<span class="Special"> &lt;- </span><span class="Identifier">next-ingredient</span>
+  result:address:list<span class="Special"> &lt;- </span>new list:type
+  val:address:location<span class="Special"> &lt;- </span>get-address result:address:list/deref, value:offset
+  val:address:location/deref<span class="Special"> &lt;- </span>copy x:location
+  next:address:address:list<span class="Special"> &lt;- </span>get-address result:address:list/deref, next:offset
+  next:address:address:list/deref<span class="Special"> &lt;- </span>copy in:address:list
+  <span class="Identifier">reply</span> result:address:list
+]
+
+<span class="Comment"># result:location &lt;- first in:address:list</span>
+<span class="muRecipe">recipe</span> first [
+  <span class="Identifier">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  in:address:list<span class="Special"> &lt;- </span><span class="Identifier">next-ingredient</span>
+  result:location<span class="Special"> &lt;- </span>get in:address:list/deref, value:offset
+  <span class="Identifier">reply</span> result:location
+]
+
+<span class="Comment"># result:address:list &lt;- rest in:address:list</span>
+<span class="muRecipe">recipe</span> rest [
+  <span class="Identifier">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  in:address:list<span class="Special"> &lt;- </span><span class="Identifier">next-ingredient</span>
+  result:address:list<span class="Special"> &lt;- </span>get in:address:list/deref, next:offset
+  <span class="Identifier">reply</span> result:address:list
+]
+
+<span class="muScenario">scenario</span> list-handling [
+  run [
+<span class="CommentedCode">#?     $start-tracing #? 1</span>
+    1:address:list<span class="Special"> &lt;- </span>copy <span class="Constant">0:literal</span>
+    1:address:list<span class="Special"> &lt;- </span>push <span class="Constant">3:literal</span>, 1:address:list
+    1:address:list<span class="Special"> &lt;- </span>push <span class="Constant">4:literal</span>, 1:address:list
+    1:address:list<span class="Special"> &lt;- </span>push <span class="Constant">5:literal</span>, 1:address:list
+    2:number<span class="Special"> &lt;- </span>first 1:address:list
+    1:address:list<span class="Special"> &lt;- </span>rest 1:address:list
+    3:number<span class="Special"> &lt;- </span>first 1:address:list
+    1:address:list<span class="Special"> &lt;- </span>rest 1:address:list
+    4:number<span class="Special"> &lt;- </span>first 1:address:list
+    1:address:list<span class="Special"> &lt;- </span>rest 1:address:list
+  ]
+  memory-should-contain [
+    1<span class="Special"> &lt;- </span>0  <span class="Comment"># empty to empty, dust to dust..</span>
+    2<span class="Special"> &lt;- </span>5
+    3<span class="Special"> &lt;- </span>4
+    4<span class="Special"> &lt;- </span>3
+  ]
+]
+</pre>
+</body>
+</html>
+<!-- vim: set foldmethod=manual : -->