Sha256: 7ee4e9c7fbc7223b32cf1898006243e3348fcfc1357a9fd19a352a707b9b19da

Contents?: true

Size: 434 Bytes

Versions: 3

Compression:

Stored size: 434 Bytes

Contents

# frozen_string_literal: true

require_relative "unary_function"

module Plurimath
  module Math
    module Function
      class Merror < UnaryFunction
        def to_asciimath;end

        def to_latex;end

        def to_mathml_without_math_tag
          merror = Utility.ox_element("merror")
          Utility.update_nodes(merror, mathml_value)
        end

        def to_omml_without_math_tag(_); end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
plurimath-0.7.2 lib/plurimath/math/function/merror.rb
plurimath-0.7.1 lib/plurimath/math/function/merror.rb
plurimath-0.7.0 lib/plurimath/math/function/merror.rb