Sha256: 3d2124f8abbc9660fe5ead2a2f1518823136d923ece3379bf6b447ce075c54a1
Contents?: true
Size: 416 Bytes
Versions: 1
Compression:
Stored size: 416 Bytes
Contents
# frozen_string_literal: true require_relative "binary_function" module Plurimath module Math module Function class Substack < 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/substack.rb |