ListReduceRight

Run the provided udf over a reversed delimited list to reduce the values to a single output

Method Signature

ListReduceRight(list=[string], callback=[function], initialValue=[any], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean])

Arguments

ArgumentTypeRequiredDescriptionDefault

list

string

true

The delimited list to perform operations on

callback

function

true

The function to invoke for each item. The function will be passed 3 arguments: the value, the index, the array.

initialValue

any

false

The initial value of the reduction

delimiter

string

false

string the list delimiter

,

includeEmptyFields

boolean

false

boolean whether to include empty fields in the returned result

false

multiCharacterDelimiter

boolean

false

boolean whether the delimiter is multi-character

true

Examples

Last updated

Logo

Copyright & Register Trademark by Ortus Solutions, Corp & Ortus Software, LLC