You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
214 B
Go
16 lines
214 B
Go
5 years ago
|
package set
|
||
|
|
||
|
type Iterator struct {
|
||
|
vals []interface{}
|
||
|
idx int
|
||
|
}
|
||
|
|
||
|
func (it *Iterator) Value() interface{} {
|
||
|
return it.vals[it.idx]
|
||
|
}
|
||
|
|
||
|
func (it *Iterator) Next() bool {
|
||
|
it.idx++
|
||
|
return it.idx < len(it.vals)
|
||
|
}
|