Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Iterator ¶
type Iterator interface {
// Next moves the cursor to the next element and returns true if successful.
Next() bool
// Value returns the current element's key and value.
Value() (string, any)
// Err returns any error encountered during iteration.
Err() error
}
Iterator is a common interface for iterating over collections.
Click to show internal directories.
Click to hide internal directories.