Sha256: 95934ad91e65caebcf53f74fd0adf7d3b2b3df0a268593c4b13bc6b309b61ca6
Contents?: true
Size: 558 Bytes
Versions: 15
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Hat < UnaryFunction def to_mathml_without_math_tag mover_tag = Utility.ox_element("mover") first_value = parameter_one&.to_mathml_without_math_tag second_value = (Utility.ox_element("mo") << "^") Utility.update_nodes( mover_tag, [ first_value, second_value, ], ) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems