]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/zclconf/go-cty/cty/set/iterator.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / zclconf / go-cty / cty / set / iterator.go
1 package set
2
3 type Iterator struct {
4 vals []interface{}
5 idx int
6 }
7
8 func (it *Iterator) Value() interface{} {
9 return it.vals[it.idx]
10 }
11
12 func (it *Iterator) Next() bool {
13 it.idx++
14 return it.idx < len(it.vals)
15 }