feat: golangci lint

This commit is contained in:
2025-12-25 23:48:39 -05:00
parent 3351eaddfc
commit 32b1ba12f4
2 changed files with 243 additions and 2 deletions

View File

@@ -1,24 +1,33 @@
/*
Package "iterator"
*/
package iterator
import "fmt"
// An iterator over slices.
type Iterator[T any] struct {
data []T
data []T
index int
}
// Create a new iterator, over a set of items.
func New[T any](items []T) Iterator[T] {
return Iterator[T]{ data: items, index: 0 }
return Iterator[T]{data: items, index: 0}
}
// Returns the current position of the iterator.
func (i Iterator[T]) Index() int {
return i.index
}
// Returns true if the iterator has no more items to iterate over.
func (i Iterator[T]) IsDone() bool {
return i.index == len(i.data)
}
// Gets the next item in the slice, if one exists. Returns an error if there
// isn't one.
func (i Iterator[T]) Peek() (T, error) {
var null T
@@ -29,6 +38,8 @@ func (i Iterator[T]) Peek() (T, error) {
return i.data[i.index], nil
}
// Moves the iterator pointer to the next item. Returns the current item. Fails
// if there are no more items to iterate over.
func (i *Iterator[T]) Next() (T, error) {
if val, err := i.Peek(); err != nil {
return val, err