Sha256: 39434cf14c8f9fa3ba659869de7dbed1ca7d608a2524b09d80974a059f0021a9
Contents?: true
Size: 404 Bytes
Versions: 17
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true require_relative "binary_function" module Plurimath module Math module Function class Oint < BinaryFunction def to_asciimath first_value = "_#{wrapped(parameter_one)}" if parameter_one second_value = "^#{wrapped(parameter_two)}" if parameter_two "oint#{first_value}#{second_value}" end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems