ISMAP

b = ISMAP (x)

Returns true if x is a MAP variable.

Example

A = {"x":1, "y":2}
print IsMap(A)      ' Output 1

A = [1,2,3]
print IsMap(A)      ' Output 0 (is an array)

A = 1
print IsMap(A)      ' Output 0 (is a number)

A = "abc"
print IsMap(A)      ' Output 0 (is a string)
Data
If there is insufficient information on this page and you wish learn more about ISMAP, please send an email to smallbasic@gmail.com. You can help to improve information about ISMAP by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.