@hackage bson0.4.0.1
BSON documents are JSON-like objects with a standard binary encoding.
Categories
License
Apache-2.0
Maintainer
Fedor Gogolev <knsd@knsd.net>, Greg Weber <greg@gregweber.info>
Links
Versions
Installation
Dependencies (10)
- base >=4.9.0.0 && <5
- binary >=0.5 && <0.9
- bytestring
- cryptohash-md5 >=0.11 && <0.12
- data-binary-ieee754
- mtl >=2 Show all…
Dependents (24)
@hackage/apiary-mongoDB, @hackage/structured-mongoDB, @hackage/snaplet-mongoDB, @hackage/acme-everything, @hackage/bson-generic, @hackage/bson-generics, Show all…
Package Flags
_old-network
(on by default)
Control whether to use network-bsd
A BSON Document is an untyped (dynamically type-checked) record. I.e. it is a list of name-value pairs, where a Value is a single sum type with constructors for basic types (Bool, Int, Float, String, and Time), compound types (List, and (embedded) Document), and special types (Binary, Javascript, ObjectId, RegEx, and a few others). A BSON Document is serialized to a standard binary encoding defined at http://bsonspec.org. This implements version 1 of that spec.