class ActiveModel::Type::BigInteger

Active Model BigInteger Type

Attribute type for integers that can be serialized to an unlimited number of bytes. This type is registered under the :big_integer key.

class Person
  include ActiveModel::Attributes

  attribute :id, :big_integer
end

person = Person.new
person.id = "18_000_000_000"

person.id # => 18000000000

All casting and serialization are performed in the same way as the standard ActiveModel::Type::Integer type.

Private Instance Methods

max_value() click to toggle source
# File lib/active_model/type/big_integer.rb, line 31
def max_value
  ::Float::INFINITY
end