|
|
|
|
|
CheckAnyTrue (Function) In french: VérifieUnVrai Return True if at least one element of an array is True. arrProduct is array of Product // Return True if at least one product is out of stock to notify the manager IF CheckAnyTrue(arrProduct, AProduct => AProduct.Stock = 0) THEN // alert END
Syntax
<Result> = CheckAnyTrue(<Source> [, <Operation>])
<Result>: Boolean - True if at least one element of the specified array is True,
- False otherwise.
<Source>: Array Name of the Array variable to be checked. <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. Remarks Sequence of functionsYou can use array functions in a sequence. The following functions can be used in a sequence: This sequence can be used as a source for a FOR ALL statement or it can end with one of the following functions: Example: gnMoyenne = gtabUser.Filtre(cbFiltre).Map(cbTransforme).Mean()
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|