Functions Index :: A :: ArrayDelimiterReset

[<< up one level]

Module:

array :: core

Definition:

ArrayDelimiterReset()

Description:

Assigns the library's default value as the array elements delimiter and updates the corresponding internal library variables. Returns the previous setting.

Note that this is a global setting affecting immediately all subsequent operations on arrays.

Examples:

old = ArrayDelimiterReset()

...

# do some action that assumes default settings and

# then restore the old value

...

dummy = ArrayDelimiterSet(old)

# assign to dummy to avoid assigning to last

 

[<< top]