class BSON::Int64

Represents int64 type.

@see bsonspec.org/#/specification

@since 2.0.0

Constants

BSON_TYPE

A boolean is type 0x08 in the BSON spec.

@since 2.0.0

PACK

Constant for the int 64 pack directive.

@since 2.0.0

Public Class Methods

from_bson(buffer) click to toggle source

Deserialize an Integer from BSON.

@param [ ByteBuffer ] buffer The byte buffer.

@return [ Integer ] The decoded Integer.

@see bsonspec.org/#/specification

@since 2.0.0

# File lib/bson/int64.rb, line 43
def self.from_bson(buffer)
  buffer.get_int64
end
new(integer) click to toggle source

Instantiate a BSON Int64.

@param [ Integer ] integer The 64-bit integer.

@see bsonspec.org/#/specification

@since 4.2.0

# File lib/bson/int64.rb, line 54
def initialize(integer)
  out_of_range! unless integer.bson_int64?
  @integer = integer.freeze
end

Public Instance Methods

==(other) click to toggle source

Check equality of the int64 with another object.

@param [ Object ] other The object to check against.

@return [ true, false ] If the objects are equal.

@since 4.4.0

# File lib/bson/int64.rb, line 94
def ==(other)
  return false unless other.is_a?(Int64)
  @integer == other.instance_variable_get('@integer')
end
Also aliased as: eql?, ===
===(other)
Alias for: ==
eql?(other)
Alias for: ==
to_bson(buffer = ByteBuffer.new, validating_keys = Config.validating_keys?) click to toggle source

Append the integer as encoded BSON to a ByteBuffer.

@example Encoded the integer and append to a ByteBuffer.

int64.to_bson

@return [ BSON::ByteBuffer ] The buffer with the encoded integer.

@see bsonspec.org/#/specification

@since 4.2.0

# File lib/bson/int64.rb, line 69
def to_bson(buffer = ByteBuffer.new, validating_keys = Config.validating_keys?)
  buffer.put_int64(@integer)
end
to_bson_key(validating_keys = Config.validating_keys?) click to toggle source

Convert the integer to a BSON string key.

@example Convert the integer to a BSON key string.

int.to_bson_key

@param [ true, false ] validating_keys If BSON should validate the key.

@return [ String ] The string key.

@since 4.2.0

# File lib/bson/int64.rb, line 83
def to_bson_key(validating_keys = Config.validating_keys?)
  @integer
end

Private Instance Methods

out_of_range!() click to toggle source
# File lib/bson/int64.rb, line 103
def out_of_range!
  raise RangeError.new("#{self} is not a valid 8 byte integer value.")
end