There are comparatively few of these - applications embedding Simkin should provide a great deal more!
length(<value>)
a="1.0"; trace(length(a)); // will output "3"
charAt(<value>,<pos>)
pos
within the parameter value
.
pos
starts at 0 for the first character.
a="1.0"; trace(charAt(a,2)); // will output "0"
trace(<value>)
a="1.0"; trace(a); // will output "1.0" to the application tracer
toInt(<value>)
a="1.0"; trace(toInt(a)); // will output "1"
toFloat(<value>)
a="1"; trace(toFloat(a)); // will output "1.0000"
toString(<value>)
a="1.0"; trace(toString(a)); // will output "1.0"
toChar(<value>)
a="1.0"; trace(toChar(a)); // will output "1"
toBool(<value>)
a="1.0"; trace(toBool(a)); // will output "true"
isObject(<value>)
a="1.0"; trace(isObject(a)); // will output "false" trace(isObject(self)); // will output "true"