about summary refs log tree commit diff stats
path: root/html/066stream.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-13 20:53:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-13 20:53:41 -0700
commit83fcebf3210b638d9f8248e0007e9f0c9804980a (patch)
tree95c4855bef341e1d46eb4725b54a3eaaf6858f08 /html/066stream.mu.html
parent8b9f1750c74c7d3cca99d6949a90cd61eb8e0218 (diff)
downloadmu-83fcebf3210b638d9f8248e0007e9f0c9804980a.tar.gz
1778
Diffstat (limited to 'html/066stream.mu.html')
-rw-r--r--html/066stream.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/066stream.mu.html b/html/066stream.mu.html
index feba9cf7..2e899c6c 100644
--- a/html/066stream.mu.html
+++ b/html/066stream.mu.html
@@ -13,11 +13,11 @@
 pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
 body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 * { font-size: 1.05em; }
+.muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
 .Constant { color: #00a0a0; }
 .Special { color: #ff6060; }
 .muControl { color: #c0a020; }
-.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -36,7 +36,7 @@ container stream [
 ]
 
 <span class="muRecipe">recipe</span> new-stream [
-  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  <span class="Constant">new-default-space</span>
   result:address:stream<span class="Special"> &lt;- </span>new stream:type
   i:address:number<span class="Special"> &lt;- </span>get-address result:address:stream/deref, index:offset
   i:address:number/deref<span class="Special"> &lt;- </span>copy <span class="Constant">0:literal</span>
@@ -46,7 +46,7 @@ container stream [
 ]
 
 <span class="muRecipe">recipe</span> rewind-stream [
-  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  <span class="Constant">new-default-space</span>
   in:address:stream<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
   x:address:number<span class="Special"> &lt;- </span>get-address in:address:stream/deref, index:offset
   x:address:number/deref<span class="Special"> &lt;- </span>copy <span class="Constant">0:literal</span>
@@ -54,7 +54,7 @@ container stream [
 ]
 
 <span class="muRecipe">recipe</span> read-line [
-  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  <span class="Constant">new-default-space</span>
   in:address:stream<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
   idx:address:number<span class="Special"> &lt;- </span>get-address in:address:stream/deref, index:offset
   s:address:array:character<span class="Special"> &lt;- </span>get in:address:stream/deref, data:offset
@@ -65,7 +65,7 @@ container stream [
 ]
 
 <span class="muRecipe">recipe</span> end-of-stream? [
-  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  <span class="Constant">new-default-space</span>
   in:address:stream<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
   idx:number<span class="Special"> &lt;- </span>get in:address:stream/deref, index:offset
   s:address:array:character<span class="Special"> &lt;- </span>get in:address:stream/deref, data:offset