Sha256: 928fde5c5587f53a49a2950601acb64a6ca79ae561e470f3ff4f6704f3d15a89
Contents?: true
Size: 577 Bytes
Versions: 4
Compression:
Stored size: 577 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Scarries < UnaryFunction def to_asciimath asciimath_value end def to_latex latex_value end def to_mathml_without_math_tag(intent) Utility.update_nodes( ox_element("mscarries"), mathml_value(intent), ) end def to_omml_without_math_tag(display_style) omml_value(display_style) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems