4D v16.3

BOOLEAN ARRAY FROM SET

Home

 
4D v16.3
BOOLEAN ARRAY FROM SET

BOOLEAN ARRAY FROM SET 


 

BOOLEAN ARRAY FROM SET ( booleanArr {; set} ) 
Parameter Type   Description
booleanArr  Boolean array in Array to indicate if a record is in the set or not
set  String in Name of the set or UserSet if this parameter is omitted

The BOOLEAN ARRAY FROM SET command fills an array of Booleans indicating if each record in the table is or is not in set.

The elements in the array are ordered in the order in which the records are created in the table (absolute record numbers). If N is the number of records in the table, element 0 of the array corresponds to record number 0, element 1 of the array corresponds to record number 1, etc.

Each element of the array is:

  • True if the corresponding record belongs to the set.
  • False if the corresponding record does not belong to the set.

Warning: The total number of elements in the booleanArr array is not significant. For structural reasons, this number can be different from the number of records actually present in the table. Possible extra elements are set to False.

If you don’t pass the set parameter, the command will use UserSet in the current process.



See also 

CREATE SET FROM ARRAY

 
PROPERTIES 

Product: 4D
Theme: Arrays
Number: 646

This command can be run in preemptive processes

 
HISTORY 

Created: 4D v6.5

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)