Sha256: 1951c882c0cd0c229de1becbd82e2a0d5364f33c4cc0e7f6116e70d3f4c1d7ee

Contents?: true

Size: 334 Bytes

Versions: 2

Compression:

Stored size: 334 Bytes

Contents

# frozen_string_literal: true

require_relative "unary_function"

module Plurimath
  module Math
    module Function
      class Exp < UnaryFunction
        def validate_function_formula
          false
        end

        def to_omml_without_math_tag
          [r_element("exp"), omml_value]
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plurimath-0.3.9 lib/plurimath/math/function/exp.rb
plurimath-0.3.8 lib/plurimath/math/function/exp.rb