Sha256: 01237c48e425770a13bcbaa03afc46d37082367096689a043d6c6a0aaff70d3e

Contents?: true

Size: 425 Bytes

Versions: 4

Compression:

Stored size: 425 Bytes

Contents

# frozen_string_literal: true

require_relative "unary_function"

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

        def to_latex; end

        def to_mathml_without_math_tag(_)
          ox_element("none")
        end

        def to_omml_without_math_tag(_)
          empty_tag
        end

        def to_unicodemath; end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
plurimath-0.8.14 lib/plurimath/math/function/none.rb
plurimath-0.8.13 lib/plurimath/math/function/none.rb
plurimath-0.8.12 lib/plurimath/math/function/none.rb
plurimath-0.8.11 lib/plurimath/math/function/none.rb