mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 13:58:05 +00:00
a1e3655560
neo-storm has developed more wrappers for syscall APIs, so they can and should be used as a drop-in replacement for pkg/vm/api. Moving it out of vm, as it's not exactly related to the VM itself.
28 lines
646 B
Go
28 lines
646 B
Go
package iterator
|
|
|
|
// Package iterator provides function signatures that can be used inside
|
|
// smart contracts that are written in the neo-go framework.
|
|
|
|
// Iterator stubs a NEO iterator object type.
|
|
type Iterator struct{}
|
|
|
|
// Create creates an iterator from the given items.
|
|
func Create(items []interface{}) Iterator {
|
|
return Iterator{}
|
|
}
|
|
|
|
// TODO: Better description for this.
|
|
// Key returns the iterator key.
|
|
func Key(it Iterator) interface{} {
|
|
return nil
|
|
}
|
|
|
|
// Keys returns the iterator keys.
|
|
func Keys(it Iterator) []interface{} {
|
|
return nil
|
|
}
|
|
|
|
// Values returns the iterator values.
|
|
func Values(it Iterator) []interface{} {
|
|
return nil
|
|
}
|