Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleAvailability

This routine is available starting with katl-commons SIL Engine™ 1.0.

 


Description

Excerpt

If elem is an element of the array type, returns a new array without the specified element.

...

deleteElement(arrayName, elem)

Parameters

Parameter name

Type

Required

Description

arrayName

array

Yes

Array the new element is deleted from.

elem

any

Yes

Element to be deleted. Must be the same type as the array type.

Return Type

array

Example

Code Block
watchers = deleteElement(watchers, currentUser());

...

Info
titlekatl-commons 2.5 specific

Starting with version 2.5, there is a more powerful way to express these operations: array = array - element; or even better array -= element;

...


See also

Filter by label (Content by label)
showLabelsfalse
max100
showSpacefalse
cqllabel = "array_routines"
labelsarray_routines

...