Guest User

Untitled

a guest
May 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. type bsonvalue =
  2. | BDouble of float
  3. | BString of string
  4. | BObject of bsondoc
  5. | BArray of list bsonvalue
  6. | BBinary of int * string
  7. | BUndefined
  8. | BOid of string
  9. | BBool of bool
  10. | BDate of int64
  11. | BNull
  12. | BEoo
  13. | BRegEx of string * string
  14. | BRef of string * string
  15. | BCode of string
  16. | BReserved2
  17. | BScopedCode of string
  18. | BInt of int32
  19. | BLong of int64
  20. | BTimestamp of int64
  21. | BSymbol of string
  22. | BCodeScoped of int32 * string * bsondoc
  23.  
  24. type bsondoc = (string * bsonvalue) list
Add Comment
Please, Sign In to add comment