Add note about Go RFC3339Nano sortability to README

RFC3339 is sortable, but RFC3339Nano is not, because it does not use a fixed number of digits after the decimal.
pull/24/head
Eric Boren 2016-03-22 13:10:49 -04:00
parent 08b033d921
commit 40cff7a0e5
1 changed files with 2 additions and 0 deletions

View File

@ -427,6 +427,8 @@ db.View(func(tx *bolt.Tx) error {
})
```
Note that, while RFC3339 is sortable, the Golang implementation of RFC3339Nano does not use a fixed number of digits after the decimal point and is therefore not sortable.
#### ForEach()