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