Versions Compared

Key

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

Button handy
blanktrue
color#0052CC
nameSend Feedback
linkhttps://docs.google.com/forms/d/e/1FAIpQLScmToBe3vynAlb5fdKwCGxYqnTbDc66sIBgeecG2BuFDuHc7g/viewform?entry.2002826954=arrayAddElement+-+15480932
widthauto

Table plus
applyColStyleToCelltrue
heading0
columnTypess,s,s,s
multiplefalse
columnAttributesstyle="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold,
enableSortingfalse

Syntax

arrayAddElement(arrayName, elem)

Package

array

Alias

addElement(arrayName, elem)

Pkg Usage

addElement(arrayName, elem)

...

The result returned by the routine function is assigned to a new array watchers2, so the initial array watchers will not be modified.

...

The result returned by the routine function is assigned to the same array watchers, so the initial array watchers will be modified.

Note

If elem is not the same type as declared in the array definition, the routine function returns error.

Info
Starting with version 2.5 is easier for you to just use the '+' operator to add elements to an array. array = array + element it is a simple and more meaningful way to express it. array += element is even better.

...