Core Inspectors

A few basic Inspectors serve to expand the core language. They are similar to Relevance language elements, but they are often OS-dependent and therefore easier to compile into Inspector libraries.

Q: floating point "3.14159"
A: 3.14159
I: floating point

Creates a floating point number out of the specified string.

Q: string "hello"
A: hello
I: string

Creates a string type from the specified quoted string.

Q: nan of (floating point "1.e-99999" / 0)
A: True

Nan (Not A Number) is used to test floating point numbers.

Q: first 6 of "Now is the time"
A: Now is

Returns the first N characters of the specified string.

Q: multiplicities of unique values of (1;2;3;3)
A: 1
A: 1
A: 2

The multiplicity Inspector allows you to analyze the frequencies of items in a list.