blob: 259e74fa6a641f246540b7a612d9d31006ec599f (
plain) (
tree)
|
|
<!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>~/Desktop/s/mu/062array.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; }
.Delimiter { color: #c000c0; }
.Comment { color: #8080ff; }
.Constant { color: #008080; }
.Special { color: #ff6060; }
.Identifier { color: #008080; }
-->
</style>
<script type='text/javascript'>
<!--
-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
scenario array-from-args [
run [
1:address:array:location<span class="Special"> <- </span>init-array <span class="Constant">0:literal</span>, <span class="Constant">1:literal</span>, <span class="Constant">2:literal</span>
2:array:location<span class="Special"> <- </span>copy 1:address:array:location/deref
]
memory-should-contain [
2<span class="Special"> <- </span>3 <span class="Comment"># array length</span>
3<span class="Special"> <- </span>0
4<span class="Special"> <- </span>1
5<span class="Special"> <- </span>2
]
]
<span class="Comment"># create an array out of a list of scalar args</span>
recipe init-array [
default-space:address:array:location<span class="Special"> <- </span>new location:type, <span class="Constant">30:literal</span>
capacity:number<span class="Special"> <- </span>copy <span class="Constant">0:literal</span>
<span class="Delimiter">{</span>
<span class="Comment"># while read curr-value</span>
curr-value:location, exists?:boolean<span class="Special"> <- </span>next-ingredient
<span class="Identifier">break-unless</span> exists?:boolean
capacity:number<span class="Special"> <- </span>add capacity:number, <span class="Constant">1:literal</span>
<span class="Identifier">loop</span>
<span class="Delimiter">}</span>
result:address:array:location<span class="Special"> <- </span>new location:type, capacity:number
rewind-ingredients
i:number<span class="Special"> <- </span>copy <span class="Constant">0:literal</span>
<span class="Delimiter">{</span>
<span class="Comment"># while read curr-value</span>
done?:boolean<span class="Special"> <- </span>greater-or-equal i:number, capacity:number
<span class="Identifier">break-if</span> done?:boolean
curr-value:location, exists?:boolean<span class="Special"> <- </span>next-ingredient
assert exists?:boolean, <span class="Constant">[error in rewinding ingredients to init-array]</span>
tmp:address:location<span class="Special"> <- </span>index-address result:address:array:location/deref, i:number
tmp:address:location/deref<span class="Special"> <- </span>copy curr-value:location
i:number<span class="Special"> <- </span>add i:number, <span class="Constant">1:literal</span>
<span class="Identifier">loop</span>
<span class="Delimiter">}</span>
<span class="Identifier">reply</span> result:address:array:location
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->
|