Sha256: 56177d2af8c3b29de4462d65afc9d4923dca45232a912aacd949e82a41a3daf4
Contents?: true
Size: 731 Bytes
Versions: 10
Compression:
Stored size: 731 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Longdiv < UnaryFunction def to_asciimath asciimath_value end def to_latex latex_value end def to_mathml_without_math_tag Utility.update_nodes( ox_element("m#{class_name}"), mathml_value, ) end def to_omml_without_math_tag(display_style) omml_value(display_style) end def to_unicodemath parameter_one&.to_unicodemath end def line_breaking(obj) custom_array_line_breaking(obj) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems