public static decimal Power(decimal n, decimal m)
 {
     return(ScriptableBuiltInFunction.Power(n, m));
 }
 public static long LongIntegerToIdentifier(long b)
 {
     return(ScriptableBuiltInFunction.LongIntegerToIdentifier(b));
 }
 public static string IdentifierToText(string id)
 {
     return(ScriptableBuiltInFunction.IdentifierToText(id));
 }
 public static DateTime DateToDateTime(DateTime d)
 {
     return(ScriptableBuiltInFunction.DateToDateTime(d));
 }
 public static long IdentifierToLongInteger(long id)
 {
     return(ScriptableBuiltInFunction.IdentifierToLongInteger(id));
 }
 public static string BooleanToText(bool b)
 {
     return(ScriptableBuiltInFunction.BooleanToText(b));
 }
 public static decimal Round(decimal n, int fractionalDigits)
 {
     return(ScriptableBuiltInFunction.Round(n, fractionalDigits));
 }
 public static string LongIntegerToText(long b)
 {
     return(ScriptableBuiltInFunction.LongIntegerToText(b));
 }
 public static decimal IntegerToDecimal(int i)
 {
     return(ScriptableBuiltInFunction.IntegerToDecimal(i));
 }
 public static bool TextToTimeValidate(string t)
 {
     return(ScriptableBuiltInFunction.TextToTimeValidate(t));
 }
 public static string IntegerToText(int i)
 {
     return(ScriptableBuiltInFunction.IntegerToText(i));
 }
 public static DateTime TextToTime(string t)
 {
     return(ScriptableBuiltInFunction.TextToTime(t));
 }
 public static bool TextToDecimalInputValidate(string t)
 {
     return(ScriptableBuiltInFunction.TextToDecimalInputValidate(t));
 }
 public static decimal TextToDecimalInput(string t)
 {
     return(ScriptableBuiltInFunction.TextToDecimalInput(t));
 }
 public static bool LongIntegerToIntegerValidate(long b)
 {
     return(ScriptableBuiltInFunction.LongIntegerToIntegerValidate(b));
 }
 public static bool IntegerToBoolean(int i)
 {
     return(ScriptableBuiltInFunction.IntegerToBoolean(i));
 }
 public static bool DecimalToBoolean(decimal d)
 {
     return(ScriptableBuiltInFunction.DecimalToBoolean(d));
 }
 // for backward compatibility
 public static decimal Round(decimal n)
 {
     return(ScriptableBuiltInFunction.Round(n));
 }
 public static int BooleanToInteger(bool b)
 {
     return(ScriptableBuiltInFunction.BooleanToInteger(b));
 }
 public static string DecimalToText(decimal d)
 {
     return(ScriptableBuiltInFunction.DecimalToText(d));
 }
 public static string DateToText(DateTime d)
 {
     return(ScriptableBuiltInFunction.DateToText(d));
 }
 public static int DecimalToInteger(decimal d)
 {
     return(ScriptableBuiltInFunction.DecimalToInteger(d));
 }
 public static string TimeToText(DateTime t)
 {
     return(ScriptableBuiltInFunction.TimeToText(t));
 }
 public static long DecimalToLongInteger(decimal d)
 {
     return(ScriptableBuiltInFunction.DecimalToLongInteger(d));
 }
 public static int IntegerToIdentifier(int i)
 {
     return(ScriptableBuiltInFunction.IntegerToIdentifier(i));
 }
 public static bool DecimalToLongIntegerValidate(decimal d)
 {
     return(ScriptableBuiltInFunction.DecimalToLongIntegerValidate(d));
 }
 public static decimal Sqrt(decimal n)
 {
     return(ScriptableBuiltInFunction.Sqrt(n));
 }
 public static int LongIntegerToInteger(long b)
 {
     return(ScriptableBuiltInFunction.LongIntegerToInteger(b));
 }
 public static string TextToIdentifier(string t)
 {
     return(ScriptableBuiltInFunction.TextToIdentifier(t));
 }
 public static bool TextToLongIntegerInputValidate(string t)
 {
     return(ScriptableBuiltInFunction.TextToLongIntegerInputValidate(t));
 }