Ignore:
Timestamp:
Dec 30, 2008, 1:57:13 AM (17 years ago)
Author:
bird
Message:

kmk: Added a $(select ) function for handling switch like stuff. Fixes #74.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/doc/QuickReference-kmk.html

    r2161 r2163  
    841841</pre>
    842842</blockquote>
    843 <p>(Mostly) Boolean Functions:</p>
     843<p>Boolean and Conditional Functions:</p>
    844844<blockquote>
    845845<p>Condition is false if the <tt class="docutils literal"><span class="pre">condition</span></tt> evaluates to an empty string
     
    879879<p>Same as <tt class="docutils literal"><span class="pre">$(if</span> <span class="pre">)</span></tt> execpt that the condition is a <tt class="docutils literal"><span class="pre">kmk</span></tt> expression:</p>
    880880<pre class="literal-block">
    881 $(if kmk-expression,true-part[,false-part])
     881$(if-expr kmk-expression,true-part[,false-part])
     882</pre>
     883<p>Select the first true condition (<tt class="docutils literal"><span class="pre">kmk</span></tt> expression) and expand the
     884following body. Special condition strings <tt class="docutils literal"><span class="pre">default</span></tt> and <tt class="docutils literal"><span class="pre">otherwise</span></tt>:</p>
     885<pre class="literal-block">
     886$(select when1-cond, when1-body[, whenN-cond, whenN-body])
    882887</pre>
    883888<p>Evalutate the <tt class="docutils literal"><span class="pre">kmk</span></tt> expression returning what it evalues as. This is
Note: See TracChangeset for help on using the changeset viewer.