class Perpetuity::Postgres::NumericValue

Public Class Methods

new(value) click to toggle source
# File lib/perpetuity/postgres/numeric_value.rb, line 4
def initialize value
  @value = value
end

Public Instance Methods

to_s() click to toggle source
# File lib/perpetuity/postgres/numeric_value.rb, line 8
def to_s
  @value.to_s
end
to_str() click to toggle source
# File lib/perpetuity/postgres/numeric_value.rb, line 12
def to_str
  to_s
end