Sha256: 10e4e2ad290dbac4ba02a3510a14af21ae14f385aa8093af9cd73822b8ce630b
Contents?: true
Size: 475 Bytes
Versions: 17
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Deg < UnaryFunction def validate_function_formula false end def to_omml_without_math_tag(display_style) array = [] array << r_element("deg", rpr_tag: false) unless hide_function_name array += Array(omml_value(display_style)) array end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems