Sha256: 8f1e78eda805f9a4876350c6254a7738ecdc0b722e5d12ab588678769d8eef7c
Contents?: true
Size: 489 Bytes
Versions: 17
Compression:
Stored size: 489 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Vec < UnaryFunction def to_mathml_without_math_tag first_value = parameter_one&.to_mathml_without_math_tag Utility.update_nodes( Utility.ox_element("mover"), [ first_value, Utility.ox_element("mo") << "→", ], ) end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems