xdmp.arrayValues( Array as Array, [flatten as Boolean] ) as Sequence
Returns the array values as a Sequence.
Parameters | |
---|---|
Array | An array. |
flatten | Include values from subarrays in the sequence. The default is false, meaning that subarrays are returned as array values. |
var a = ["hello","world",["one","two"]]; xdmp.arrayValues(a); => A Sequence with the following values: hello world ["one", "two"]
var a = ["hello","world",["one","two"]]; xdmp.arrayValues(a,true); => A Sequence with the following values: hello world one two