Class LogarithmicFunctionFeatures

    • Field Detail

      • TYPE_

        public static final Name TYPE_
      • E

        public static final Name E
      • EXP

        public static final Name EXP
      • LOG

        public static final Name LOG
      • LOG10

        public static final Name LOG10
      • SQRT

        public static final Name SQRT
      • e

        public final java.lang.Boolean e
        The e() function. Returns the base of the natural logarithm, e.
      • exp

        public final java.lang.Boolean exp
        The exp() function. Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression.
      • log

        public final java.lang.Boolean log
        The log() function. Returns the natural logarithm of a FLOAT.
      • log10

        public final java.lang.Boolean log10
        The log10() function. Returns the common logarithm (base 10) of a FLOAT.
      • sqrt

        public final java.lang.Boolean sqrt
        The sqrt() function. Returns the square root of a FLOAT.
    • Constructor Detail

      • LogarithmicFunctionFeatures

        public LogarithmicFunctionFeatures​(java.lang.Boolean e,
                                           java.lang.Boolean exp,
                                           java.lang.Boolean log,
                                           java.lang.Boolean log10,
                                           java.lang.Boolean sqrt)