Sha256: fb4729dca7f560329ca37d429eb0a3818f923e7a597b0e07cd812cb536dd2795
Contents?: true
Size: 472 Bytes
Versions: 17
Compression:
Stored size: 472 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Ln < UnaryFunction def validate_function_formula false end def to_omml_without_math_tag(display_style) array = [] array = r_element("ln", 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