Class: CAS::TWO_CONSTANT

Inherits:
Constant show all
Defined in:
lib/numbers/constants.rb

Overview

Class that represents the constant Two (2)

Instance Attribute Summary

Attributes inherited from Op

#x

Instance Method Summary collapse

Methods inherited from Constant

#==, #args, #call, #depend?, #diff, #inspect, #simplify, #subs, #to_dot

Methods inherited from Op

#!=, #*, #**, #+, #-, #-@, #/, #==, #args, #as_proc, #call, #depend?, #diff, #dot_graph, #equal, #greater, #greater_equal, init_simplify_dict, #inspect, #limit, numeric_to_const, #simplify, simplify_dict, #simplify_dictionary, #smaller, #smaller_equal, #subs, #to_c_lib, #to_code

Constructor Details

#initializeTWO_CONSTANT

Initializer for the two constant

* **returns**: `CAS::TWO_CONSTANT` new instance


203
204
205
# File 'lib/numbers/constants.rb', line 203

def initialize
  @x = 2.0
end

Instance Method Details

#to_sObject

String representation for the constant

* **returns**: `String`


210
211
212
# File 'lib/numbers/constants.rb', line 210

def to_s
  "2"
end