本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
224B

  1. package store
  2. import (
  3. "github.com/lunny/nodb/store/driver"
  4. )
  5. type Snapshot struct {
  6. driver.ISnapshot
  7. }
  8. func (s *Snapshot) NewIterator() *Iterator {
  9. it := new(Iterator)
  10. it.it = s.ISnapshot.NewIterator()
  11. return it
  12. }
上海开阖软件有限公司 沪ICP备12045867号-1