continue
)Terminate process of a block within a caller function
continue
will terminate execution of a block (eg
function
, private
, foreach
,
if
, etc) right up until the caller function. In iteration
loops like foreach
and formap
this will result
in behavior similar to the continue
statement in other
programming languages.
continue block-name
%[1..10] -> foreach i {
if { $i == 5 } then {
out "continue"
continue foreach
out "skip this code"
}
out $i
}
Running the above code would output:
» foo
1
2
3
4
continue
6
7
8
9
10
continue
cannot escape the bounds of its scope
(typically the function it is running inside). For example, in the
following code we are calling continue bar
(which is a
different function) inside of the function foo
:
function foo {
%[1..10] -> foreach i {
out $i
if { $i == 5 } then {
out "exit running function"
continue bar
out "ended"
}
}
}
function bar {
foo
}
Regardless of whether we run foo
or bar
,
both of those functions will raise the following error:
Error in `continue` (7,17): no block found named `bar` within the scope of `foo`
break
):
Terminate execution of a block within your processes scopereturn
): Exits current function scopeexit
):
Exit murexforeach
): Iterate through an arrayformap
): Iterate through a map or other collection of
dataif
):
Conditional statement to execute different blocks of code depending on
the result of the conditionout
):
Print a string to the stdout with a trailing new line characterprivate
): Define a private function blockfunction
): Define a function blockThis document was generated from builtins/core/structs/break_doc.yaml.
This site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Wed Jan 15 23:07:50 UTC 2025 against commit b4c4296b4c429617fd41527ea0efef33c52c15ef2b64972.
Current version is 6.4.2063 (develop) which has been verified against tests cases.