Sha256: be64d90b6dc43379fd6df0fe65cc1965c25bf87ed0ed932999a0cb9c3205a50a
Contents?: true
Size: 597 Bytes
Versions: 14
Compression:
Stored size: 597 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Glb < UnaryFunction def validate_function_formula false end def to_latex(options:) "glb{#{latex_value(options: options)}}" end def to_omml_without_math_tag(display_style, options:) array = [] array << r_element("glb", rpr_tag: false) unless hide_function_name array += Array(omml_value(display_style, options: options)) array end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems