Simplified the Constructor and Resolver example -
no need for range checks as they are handled in Node itself.
This commit is contained in:
parent
548480b06b
commit
009017eef0
10 changed files with 48 additions and 69 deletions
|
@ -280,6 +280,10 @@
|
|||
conversion is attempted.
|
||||
<br>
|
||||
|
||||
Numeric values are range checked, throwing if out of range of
|
||||
requested type.
|
||||
<br>
|
||||
|
||||
Timestamps are stored as std.datetime.SysTime.
|
||||
Binary values are decoded and stored as ubyte[].
|
||||
<br>
|
||||
|
@ -308,7 +312,8 @@
|
|||
<b>Returns:</b><div class="pbr">Value of the node as specified type.
|
||||
|
||||
</div>
|
||||
<b>Throws:</b><div class="pbr">NodeException if unable to convert to specified type.</div>
|
||||
<b>Throws:</b><div class="pbr">NodeException if unable to convert to specified type, or if
|
||||
the value is out of range of requested type.</div>
|
||||
|
||||
</dd>
|
||||
<dt class="d_decl">void <a name="getToVar"></a><span class="ddoc_psymbol">getToVar</span>(T)(out T <b>target</b>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue