Sha256: 2a870751c58dfb6f87ba478e4d9cd87b268b83cfb5328855e7ca4c8e930222ea
Contents?: true
Size: 371 Bytes
Versions: 13
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class F < UnaryFunction def to_asciimath "f#{parameter_one&.to_asciimath}" end def to_latex first_value = latex_value if parameter_one "f#{first_value}" end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems