Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Iterator ¶
Iterator adds an implementable target for variations of different Iterator(s) for simplification of functional code, that you can then implement this reduced interface such that primarily methods Rewind and Valid and Next are overloaded. usage:
for iterator.Rewind(); iterator.Valid(); iterator.Next() {
iterator.Item()
...
}
this is a general snippet of code that using this interface may have changed implementation only Rewind and Valid are changes
Click to show internal directories.
Click to hide internal directories.