Sha256: 28f02f7bbe1141e309985126cab9b4576d2b343e08727844fdbc7d53f4dd38b4
Contents?: true
Size: 503 Bytes
Versions: 9
Compression:
Stored size: 503 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Lub < UnaryFunction def validate_function_formula false end def to_omml_without_math_tag(display_style, options:) array = [] array << r_element("lub", rpr_tag: false) unless hide_function_name array += Array(omml_value(display_style, options: options)) array end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems