$ProcCls: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:$ProcCls}} <span class="pageSubtitle"><section begin="desc" />Close procedure before reaching end<section end="desc" /></span> <p class="warning">Most Sirius $fun...") |
EllieWiccan (talk | contribs) (Automatically generated page update) |
||
(38 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:$ProcCls}} | {{DISPLAYTITLE:$ProcCls}} | ||
<span class="pageSubtitle" | <span class="pageSubtitle">Close procedure before reaching end</span> | ||
<p class=" | <p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $ProcCls function.</p> | ||
The $ProcCls function may be used to "close" a procedure before reaching its end. | The <var>$ProcCls</var> function may be used to "close" a procedure before reaching its end. | ||
The <var>$ProcCls</var> function accepts no arguments and returns a numeric result. It is a [[Calling Sirius Mods $functions|callable]] $function. | |||
==Syntax== | ==Syntax== | ||
<p class="syntax">< | <p class="syntax"><span class="term">%result</span> = $ProcCls | ||
</p> | </p> | ||
<p> | |||
<var class="term">%result</var> is set to indicate the results of the function.</p> | |||
===Return codes=== | |||
<p class="code">-1 - Current include level not opened by $ProcOpn | |||
0 - Include level closed, no more <var>$ProcOpn</var> levels left | |||
N - Include level close, N <var>$ProcOpn</var> levels left | |||
<p class="code"> | |||
0 - Include level closed, no more $ProcOpn levels left | |||
N - Include level close, N $ProcOpn | |||
</ | |||
</p> | </p> | ||
==Usage notes== | |||
<ul> | <ul> | ||
<li>If <var>$ProcCls</var> is called before the current procedure has been completely processed, the current procedure is closed and the next [[$ProcGet]], [[$ProcDat]], or [[$ProcLoc]] call operates on the previous procedure, if any. <var>$ProcCls</var> will not close an input stream that was not open via [[$ProcOpn]]. | |||
</ul> | |||
==Example== | |||
The following instructions close all procedure input streams opened by $ProcOpn. | |||
< | <p class="code">REPEAT UNTIL %RESULT <= 0 | ||
%RESULT = $ProcCls | |||
< | END REPEAT | ||
</p> | |||
==Products authorizing {{PAGENAMEE}}== | |||
<ul class="smallAndTightList"> | |||
<li>[[Sirius Functions]] | |||
<li>[[Fast/Unload User Language Interface]] | |||
<li>[[Janus Web Server]] | |||
</ul> | </ul> | ||
[[Category:$Functions|$ProcCls]] | [[Category:$Functions|$ProcCls]] |
Latest revision as of 22:42, 20 September 2018
Close procedure before reaching end
Note: Many $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $ProcCls function.
The $ProcCls function may be used to "close" a procedure before reaching its end.
The $ProcCls function accepts no arguments and returns a numeric result. It is a callable $function.
Syntax
%result = $ProcCls
%result is set to indicate the results of the function.
Return codes
-1 - Current include level not opened by $ProcOpn 0 - Include level closed, no more $ProcOpn levels left N - Include level close, N $ProcOpn levels left
Usage notes
- If $ProcCls is called before the current procedure has been completely processed, the current procedure is closed and the next $ProcGet, $ProcDat, or $ProcLoc call operates on the previous procedure, if any. $ProcCls will not close an input stream that was not open via $ProcOpn.
Example
The following instructions close all procedure input streams opened by $ProcOpn.
REPEAT UNTIL %RESULT <= 0 %RESULT = $ProcCls END REPEAT