function/closure that implements the following constructor [function(any value, numeric index,string list, string delimiter):boolean].
Alias:
function, callback, udf
delimiter
string,
optional
delimiter used to separate the string list
,
includeEmptyFields
boolean,
optional
include empty fields or not
false
multiCharacterDelimiter
boolean,
optional
specifying whether the delimiters parameter specifies a multi-character delimiter.
If this parameter is true, the delimiters parameter must specify a single delimiter consisting of multiple characters.
This parameter enables the ListToArray function to convert a list such as the following to an array of color names: red:|orange:|yellow:|green:|blue:|indigo:|violet.
true
parallel
boolean,
optional
execute closures parallel
false
maxThreads
number,
optional
maximum number of threads executed, ignored when argument "parallel" is set to false
Alias:
maxThreadCount
20
Examples
list=",,a,,b,c,,e,f";// base testres=ListSome(list,function(value){returnvalue=='a';},',',false,true,true);writeDump(res);res=ListSome(list,function(value){returnvalue=='z';},',',false,true,false);writeDump(res);