Injects behaviour for encoding and decoding floating point values to and from # raw bytes as specified by the BSON spec.
@see bsonspec.org/#/specification
@since 2.0.0
Get the floating point as encoded BSON.
@example Get the floating point as encoded BSON.
1.221311.to_bson
@return [ String ] The encoded string.
@see bsonspec.org/#/specification
@since 2.0.0
# File lib/bson/float.rb, line 45 def to_bson(encoded = ''.force_encoding(BINARY)) encoded << [ self ].pack(PACK) end
Generated with the Darkfish Rdoc Generator 2.