terraform-provider-gitea/vendor/github.com/zclconf/go-cty/cty/set/iterator.go

16 lines
207 B
Go
Raw Normal View History

2022-04-03 04:07:16 +00:00
package set
type Iterator[T any] struct {
vals []T
2022-04-03 04:07:16 +00:00
idx int
}
func (it *Iterator[T]) Value() T {
2022-04-03 04:07:16 +00:00
return it.vals[it.idx]
}
func (it *Iterator[T]) Next() bool {
2022-04-03 04:07:16 +00:00
it.idx++
return it.idx < len(it.vals)
}