|
|
|
|
<Array>.AnyFalse (Function) In french: <Tableau>.UnFaux Returns True if at least one element of an array is False.
arrProduct is array of Product // Return True if at least one product is no longer available to notify the manager IF arrProduct.AnyFalse(AProduct => AProduct.Stock > 0) THEN // Alert END
Syntax
<Result> = <Source>.AnyFalse([<Operation>])
<Result>: Boolean - True if at least one element of the specified array is False,
- False otherwise.
<Source>: Array variable Name of Array variable to check. <Operation>: WLanguage procedure WLanguage procedure to run: - If this parameter is not specified, <Source> must correspond to an array of booleans.
- If this parameter is specified, the WLanguage procedure is called for each element of the array and must return a boolean.
This parameter can correspond to a local or global WLanguage procedure, an internal procedure or a lambda procedure. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|