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 232
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 239
def to_s
  "e"
end