skip to main content
Corticon Studio: Rule Language Guide : Categories of rule operators : Extended Operators
 

Try Corticon Now

Extended Operators

Corticon's Extended operators are categorized as RandomGenerator and SeMath.

RandomGenerator

RandomGenerator does just what it says: it generates -- and then returns -- a random number.
Corticon's RandomGenerator operator is as follows:
Name and Syntax
Returns
Description
getRandomNumber
RandomGenerator. getRandomNumber
Decimal
Returns the next random number out of the current static Random object.

SeMath

Corticon's SeMath operators are as follows:
Name and Syntax
Returns
Description
getCircumference
SeMath.getCircumference (radius:<Decimal>)
Decimal
Converts the specified radius to circumference.
getFahrenheit
SeMath.getFahrenheit (centigrade:<Decimal>)
Decimal
Converts the specified Centigrade temperature to Fahrenheit.
replaceString
SeMath.replaceString (lookin:<String>,lookfor:<String> ,replacewith:<String>)
String
Replaces all occurences of a specified string with another string.