Key returns a pointer to the current element. nil indicates end of
iteration.
Must not be called prior to Next. Init initializes Iter for iteration.(*Iter) Initialized() bool Key returns a pointer to the current key. nil indicates end of iteration.
Must not be called prior to Next. Map returns the map this iterator is iterating over. Next proceeds to the next element in iteration, which can be accessed via
the Key and Elem methods.
The table can be mutated during iteration, though there is no guarantee that
the mutations will be visible to the iteration.
Init must be called prior to Next.
If m is non-nil, it should be used rather than allocating.
maxAlloc should be runtime.maxAlloc.
TODO(prattmic): Put maxAlloc somewhere accessible.
The pages are generated with Goldsv0.7.3-preview. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.