interop/iterator: documentation update

This commit is contained in:
Roman Khimov 2020-05-18 15:30:44 +03:00
parent 31d7b07eb5
commit a17bd6176f

View file

@ -1,39 +1,54 @@
/*
Package iterator provides functions to work with Neo iterators.
*/
package iterator package iterator
// Package iterator provides function signatures that can be used inside import "github.com/nspcc-dev/neo-go/pkg/interop/enumerator"
// smart contracts that are written in the neo-go framework.
// Iterator stubs a NEO iterator object type. // Iterator represents a Neo iterator, it's an opaque data structure that can
// be properly created by Create or storage.Find. Unlike enumerators, iterators
// range over key-value pairs, so it's convenient to use them for maps. This
// structure is similar in function to Neo .net framework's Iterator.
type Iterator struct{} type Iterator struct{}
// Create creates an iterator from the given items. // Create creates an iterator from the given items (array, struct or map). A new
// iterator is set to point at element -1, so to access its first element you
// need to call Next first. This function uses `Neo.Iterator.Create` syscall.
func Create(items []interface{}) Iterator { func Create(items []interface{}) Iterator {
return Iterator{} return Iterator{}
} }
// Key returns the iterator key. // Key returns iterator's key at current position. It's only valid to call after
// TODO: Better description for this. // successful Next call. This function uses `Neo.Iterator.Key` syscall.
func Key(it Iterator) interface{} { func Key(it Iterator) interface{} {
return nil return nil
} }
// Keys returns the iterator keys. // Keys returns Enumerator ranging over keys or the given Iterator. Note that
func Keys(it Iterator) []interface{} { // this Enumerator is actually directly tied to the underlying Iterator, so that
return nil // advancing it with Next will actually advance the Iterator too. This function
// uses `Neo.Iterator.Keys` syscall.
func Keys(it Iterator) enumerator.Enumerator {
return enumerator.Enumerator{}
} }
// Next advances the iterator, return true if it is was successful // Next advances the iterator returning true if it is was successful (and you
// and false otherwise. // can use Key or Value) and false otherwise (and there are no more elements in
// this Iterator). This function uses `Neo.Iterator.Next` syscall.
func Next(it Iterator) bool { func Next(it Iterator) bool {
return true return true
} }
// Value returns the current iterator value. // Value returns iterator's current value. It's only valid to call after
// successful Next call. This function uses `Neo.Iterator.Value` syscall.
func Value(it Iterator) interface{} { func Value(it Iterator) interface{} {
return nil return nil
} }
// Values returns the iterator values. // Values returns Enumerator ranging over values or the given Iterator. Note that
func Values(it Iterator) []interface{} { // this Enumerator is actually directly tied to the underlying Iterator, so that
return nil // advancing it with Next will actually advance the Iterator too. This function
// uses `Neo.Iterator.Values` syscall.
func Values(it Iterator) enumerator.Enumerator {
return enumerator.Enumerator{}
} }