Injects behaviour for encoding and decoding false values to and from raw bytes as specified by the BSON spec.
@see bsonspec.org/#/specification
@since 2.0.0
A false value in the BSON spec is 0x00.
@since 2.0.0
Get the false boolean as encoded BSON.
@example Get the false boolean as encoded BSON.
false.to_bson
@return [ String ] The encoded string.
@see bsonspec.org/#/specification
@since 2.0.0
# File lib/bson/false_class.rb, line 52 def to_bson(encoded = ''.force_encoding(BINARY)) encoded << FALSE_BYTE end
Generated with the Darkfish Rdoc Generator 2.