mirror of https://github.com/etcd-io/bbolt.git
Document undefined behavior in ForEach
parent
033d4ec028
commit
5f9559f227
|
@ -346,7 +346,8 @@ func (b *Bucket) NextSequence() (uint64, error) {
|
||||||
|
|
||||||
// ForEach executes a function for each key/value pair in a bucket.
|
// ForEach executes a function for each key/value pair in a bucket.
|
||||||
// If the provided function returns an error then the iteration is stopped and
|
// If the provided function returns an error then the iteration is stopped and
|
||||||
// the error is returned to the caller.
|
// the error is returned to the caller. The provided function must not modify
|
||||||
|
// the bucket; this will result in undefined behavior.
|
||||||
func (b *Bucket) ForEach(fn func(k, v []byte) error) error {
|
func (b *Bucket) ForEach(fn func(k, v []byte) error) error {
|
||||||
if b.tx.db == nil {
|
if b.tx.db == nil {
|
||||||
return ErrTxClosed
|
return ErrTxClosed
|
||||||
|
|
Loading…
Reference in New Issue