package util import ( "github.com/tursom/GoCollections/collections" "github.com/tursom/GoCollections/exceptions" "github.com/tursom/GoCollections/lang" ) type arrayList[T lang.Object] struct { array []T } func (a *arrayList[T]) Iterator() collections.Iterator[T] { return &arrayListIterator[T]{a.array, 0} } func (a *arrayList[T]) Size() int { return len(a.array) } func (a *arrayList[T]) IsEmpty() bool { return a.Size() == 0 } func (a *arrayList[T]) Contains(element T) bool { return collections.Contains[T](a, element) } func (a *arrayList[T]) ContainsAll(c collections.Collection[T]) bool { return collections.ContainsAll[T](a, c) } func (a *arrayList[T]) Get(index int) (T, exceptions.Exception) { return CheckedGet(a.array, index) } func (a *arrayList[T]) SubList(from, to int) collections.List[T] { return &arrayList[T]{a.array[from:to]} } type arrayListIterator[T lang.Object] struct { array []T index int } func (a *arrayListIterator[T]) HasNext() bool { return a.index < len(a.array) } func (a *arrayListIterator[T]) Next() (r T, err exceptions.Exception) { defer func() { r := recover() if r != nil { err = exceptions.NewNPE(r, nil) } }() i := a.index a.index++ r = a.array[i] return }