From c075acace45f30b9901deebf80e2839221de87dd Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Sun, 7 Jul 2024 14:13:36 +0800 Subject: [PATCH] godoc to trigger action --- tracker/tracker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tracker/tracker.go b/tracker/tracker.go index 1176c29..48b8a3a 100644 --- a/tracker/tracker.go +++ b/tracker/tracker.go @@ -246,6 +246,7 @@ func (it *Iterator) Next(descend bool) bool { return ret } +// Bounds returns the bounds of the underlying PrefixBoundIterator, if any func (it *Iterator) Bounds() ([]byte, []byte) { if impl, ok := it.NodeIterator.(*iter.PrefixBoundIterator); ok { return impl.Bounds()