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
Attributes
Public Class Methods
Source
# File lib/bson/int64.rb, line 48 def self.from_bson(buffer, **options) value = buffer.get_int64 if options[:mode] == :bson new(value) else value end end
Deserialize an Integer
from BSON
.
@param [ ByteBuffer
] buffer The byte buffer.
@option options [ nil | :bson ] :mode Decoding mode to use.
@return [ Integer
| BSON::Int64
] The decoded Integer
.
@see bsonspec.org/#/specification
@since 2.0.0
Source
# File lib/bson/int64.rb, line 64 def initialize(value) if value.is_a?(self.class) @value = value.value return end unless value.bson_int64? raise RangeError.new("#{value} cannot be stored in 64 bits") end @value = value.freeze end
@param [ Integer
] value The 64-bit integer.
@see bsonspec.org/#/specification
@since 4.2.0
Public Instance Methods
Source
# File lib/bson/int64.rb, line 114 def ==(other) return false unless other.is_a?(Int64) value == other.value end
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
Source
# File lib/bson/int64.rb, line 143 def as_extended_json(**options) if options[:mode] == :relaxed || options[:mode] == :legacy value else {'$numberLong' => value.to_s} end end
Converts this object to a representation directly serializable to Extended JSON
(github.com/mongodb/specifications/blob/master/source/extended-json/extended-json.md).
This method returns the integer value if relaxed representation is requested, otherwise a $numberLong hash.
@option opts [ nil | :relaxed | :legacy ] :mode Serialization mode
(default is canonical extended JSON)
@return [ Hash
| Integer
] The extended json representation.
Source
# File lib/bson/int64.rb, line 129 def as_json(**options) value end
Return a string representation of the Int64
for use in application-level JSON
serialization. This method is intentionally different from as_extended_json
.
@example Get the Int64
as a JSON-serializable object.
int64.as_json
Source
# File lib/bson/int64.rb, line 91 def to_bson(buffer = ByteBuffer.new) buffer.put_int64(value) end
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