True (Json function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Create a true Boolean JSON object (Json class)

[Introduced in Model 204 7.6]

This function creates a boolean Json object with a value of true.

Syntax

%json = [%(Json):]True

Syntax terms

%jsonJson object
[%(Json):] The optional class name in parentheses denotes a virtual constructor.

Usage notes

  • The True method is equivalent to Boolean(true).
  • As with all virtual or true constructors, it is usually not necessary to specify the %(json): before the True method. That is %json = %(json):true is equivalent to %json = true.

Examples

The following creates a boolean Json object with a value of false:

b %json is object json %json = true printText {~=%json} end

It prints:

%json=true

See also