class CAS::E_CONSTANT

Class that represents the constant E (e)

Public Class Methods

new() click to toggle source

Initializer for the E constant

* **returns**: `CAS::E_CONSTANT` new instance
# File lib/numbers/constants.rb, line 255
def initialize
  @x = Math::E
end

Public Instance Methods

to_s() click to toggle source

String representation for the constant

* **returns**: `String`
# File lib/numbers/constants.rb, line 262
def to_s
  "e"
end