Created
May 6, 2010 17:33
-
-
Save rrichardson/392426 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type bsonvalue = | |
| BDouble of float | |
| BString of string | |
| BObject of bsondoc | |
| BArray of list bsonvalue | |
| BBinary of int * string | |
| BUndefined | |
| BOid of string | |
| BBool of bool | |
| BDate of int64 | |
| BNull | |
| BEoo | |
| BRegEx of string * string | |
| BRef of string * string | |
| BCode of string | |
| BReserved2 | |
| BScopedCode of string | |
| BInt of int32 | |
| BLong of int64 | |
| BTimestamp of int64 | |
| BSymbol of string | |
| BCodeScoped of int32 * string * bsondoc | |
type bsondoc = (string * bsonvalue) list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment