diff options
Diffstat (limited to 'html/066stream.mu.html')
-rw-r--r-- | html/066stream.mu.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/html/066stream.mu.html b/html/066stream.mu.html index b1180362..0354fc0a 100644 --- a/html/066stream.mu.html +++ b/html/066stream.mu.html @@ -61,7 +61,7 @@ if ('onhashchange' in window) { <span id="L4" class="LineNr"> 4 </span> data:&:@:_elem <span id="L5" class="LineNr"> 5 </span>] <span id="L6" class="LineNr"> 6 </span> -<span id="L7" class="LineNr"> 7 </span><span class="muRecipe">def</span> new-stream s:&:@:_elem<span class="muRecipe"> -> </span>result:&:stream:_elem [ +<span id="L7" class="LineNr"> 7 </span><span class="muRecipe">def</span> <a href='066stream.mu.html#L7'>new-stream</a> s:&:@:_elem<span class="muRecipe"> -> </span>result:&:stream:_elem [ <span id="L8" class="LineNr"> 8 </span> <span class="Constant">local-scope</span> <span id="L9" class="LineNr"> 9 </span> <span class="Constant">load-ingredients</span> <span id="L10" class="LineNr">10 </span> result <span class="Special"><-</span> new <span class="Delimiter">{</span>(stream _elem): type<span class="Delimiter">}</span> @@ -69,7 +69,7 @@ if ('onhashchange' in window) { <span id="L12" class="LineNr">12 </span> *result <span class="Special"><-</span> put *result, <span class="Constant">data:offset</span>, s <span id="L13" class="LineNr">13 </span>] <span id="L14" class="LineNr">14 </span> -<span id="L15" class="LineNr">15 </span><span class="muRecipe">def</span> rewind in:&:stream:_elem<span class="muRecipe"> -> </span>in:&:stream:_elem [ +<span id="L15" class="LineNr">15 </span><span class="muRecipe">def</span> <a href='066stream.mu.html#L15'>rewind</a> in:&:stream:_elem<span class="muRecipe"> -> </span>in:&:stream:_elem [ <span id="L16" class="LineNr">16 </span> <span class="Constant">local-scope</span> <span id="L17" class="LineNr">17 </span> <span class="Constant">load-ingredients</span> <span id="L18" class="LineNr">18 </span> *in <span class="Special"><-</span> put *in, <span class="Constant">index:offset</span>,<span class="Constant"> 0</span> @@ -93,7 +93,7 @@ if ('onhashchange' in window) { <span id="L36" class="LineNr">36 </span> *in <span class="Special"><-</span> put *in, <span class="Constant">index:offset</span>, idx <span id="L37" class="LineNr">37 </span>] <span id="L38" class="LineNr">38 </span> -<span id="L39" class="LineNr">39 </span><span class="muRecipe">def</span> peek in:&:stream:_elem<span class="muRecipe"> -> </span>result:_elem, empty?:bool [ +<span id="L39" class="LineNr">39 </span><span class="muRecipe">def</span> <a href='066stream.mu.html#L39'>peek</a> in:&:stream:_elem<span class="muRecipe"> -> </span>result:_elem, empty?:bool [ <span id="L40" class="LineNr">40 </span> <span class="Constant">local-scope</span> <span id="L41" class="LineNr">41 </span> <span class="Constant">load-ingredients</span> <span id="L42" class="LineNr">42 </span> empty?:bool <span class="Special"><-</span> copy <span class="Constant">0/false</span> @@ -109,19 +109,19 @@ if ('onhashchange' in window) { <span id="L52" class="LineNr">52 </span> result <span class="Special"><-</span> index *s, idx <span id="L53" class="LineNr">53 </span>] <span id="L54" class="LineNr">54 </span> -<span id="L55" class="LineNr">55 </span><span class="muRecipe">def</span> read-line in:&:stream:char<span class="muRecipe"> -> </span>result:text, in:&:stream:char [ +<span id="L55" class="LineNr">55 </span><span class="muRecipe">def</span> <a href='066stream.mu.html#L55'>read-line</a> in:&:stream:char<span class="muRecipe"> -> </span>result:text, in:&:stream:char [ <span id="L56" class="LineNr">56 </span> <span class="Constant">local-scope</span> <span id="L57" class="LineNr">57 </span> <span class="Constant">load-ingredients</span> <span id="L58" class="LineNr">58 </span> idx:num <span class="Special"><-</span> get *in, <span class="Constant">index:offset</span> <span id="L59" class="LineNr">59 </span> s:text <span class="Special"><-</span> get *in, <span class="Constant">data:offset</span> <span id="L60" class="LineNr">60 </span> next-idx:num <span class="Special"><-</span> find-next s, <span class="Constant">10/newline</span>, idx -<span id="L61" class="LineNr">61 </span> result <span class="Special"><-</span> copy-range s, idx, next-idx +<span id="L61" class="LineNr">61 </span> result <span class="Special"><-</span> <a href='061text.mu.html#L1279'>copy-range</a> s, idx, next-idx <span id="L62" class="LineNr">62 </span> idx <span class="Special"><-</span> add next-idx,<span class="Constant"> 1</span> <span class="Comment"># skip newline</span> <span id="L63" class="LineNr">63 </span> <span class="Comment"># write back</span> <span id="L64" class="LineNr">64 </span> *in <span class="Special"><-</span> put *in, <span class="Constant">index:offset</span>, idx <span id="L65" class="LineNr">65 </span>] <span id="L66" class="LineNr">66 </span> -<span id="L67" class="LineNr">67 </span><span class="muRecipe">def</span> end-of-stream? in:&:stream:_elem<span class="muRecipe"> -> </span>result:bool [ +<span id="L67" class="LineNr">67 </span><span class="muRecipe">def</span> <a href='066stream.mu.html#L67'>end-of-stream?</a> in:&:stream:_elem<span class="muRecipe"> -> </span>result:bool [ <span id="L68" class="LineNr">68 </span> <span class="Constant">local-scope</span> <span id="L69" class="LineNr">69 </span> <span class="Constant">load-ingredients</span> <span id="L70" class="LineNr">70 </span> idx:num <span class="Special"><-</span> get *in, <span class="Constant">index:offset</span> |