Sha256: 1b8a2aa8916feaf881c48f3eef97aedf88fe5b454d42e9fa4bd488406707d358
Contents?: true
Size: 445 Bytes
Versions: 11
Compression:
Stored size: 445 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
11 entries across 11 versions & 1 rubygems