Sha256: 112289bbc2926aa4d81681d644a23043871cde390cbd137cd5418375315d0924
Contents?: true
Size: 415 Bytes
Versions: 1
Compression:
Stored size: 415 Bytes
Contents
# frozen_string_literal: true require_relative "binary_function" module Plurimath module Math module Function class Inf < BinaryFunction def to_latex first_value = "_{#{parameter_one.to_latex}}" if parameter_one second_value = "^{#{parameter_two.to_latex}}" if parameter_two "\\#{class_name}#{first_value}#{second_value}" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.2.0 | lib/plurimath/math/function/inf.rb |