Reset() and Clean() have new, simpler signature

This commit is contained in:
2024-09-12 05:44:29 +02:00
parent ad3c1e5a60
commit d215d837f6
4 changed files with 18 additions and 6 deletions
+2
View File
@@ -33,6 +33,8 @@ type Iterator interface {
type ExtIterator interface {
Iterator
Reset() error
Clean() error
HasOperation(name string) bool
CallOperation(name string, args map[string]any) (value any, err error)
}