Versions in this module Expand all Collapse all v0 v0.1.0 Jun 7, 2023 v0.0.1 Jun 6, 2023 Changes in this version + type Loadbalancer struct + Items []T + ThreadSafe bool + func NewLoadbalancer(items []T) *Loadbalancer[T] + func NewThreadSafeLoadbalancer(items []T) *Loadbalancer[T] + func (l *Loadbalancer[T]) AddItems(items ...T) + func (l *Loadbalancer[T]) Current() T + func (l *Loadbalancer[T]) Next() T + func (l *Loadbalancer[T]) Reset()