Documentation
¶
Index ¶
- Constants
- func ChainOption[A, B any](f func(A) Option[B]) func(Option[A]) Option[B]
- func ElimOption[A, B any](o Option[A], b func() B, f func(A) B) B
- func LiftA2Option[A, B, C any](f func(A, B) C) func(Option[A], Option[B]) Option[C]
- func MapLeft[L any, R any, O any](f func(L) O) func(Either[L, R]) Option[O]
- func MapOption[A, B any](f func(A) B) func(Option[A]) Option[B]
- func MapOptionZ[A, B any](o Option[A], f func(A) B) B
- func RecvOrTimeout[T any](c <-chan T, timeout time.Duration) (T, error)
- func RecvResp[T any](r <-chan T, e <-chan error, q <-chan struct{}) (T, error)
- func Reduce[T any, V any, S []V](s S, f Reducer[T, V]) T
- func SendOrQuit[T any, Q any](c chan<- T, msg T, quit chan Q) bool
- func SetDiff[T comparable](a, b []T) []T
- type ConcurrentQueue
- type Either
- type Event
- type EventDistributor
- type EventPublisher
- type EventReceiver
- type Option
- func (o Option[A]) Alt(o2 Option[A]) Option[A]
- func (o Option[A]) IsNone() bool
- func (o Option[A]) IsSome() bool
- func (o Option[A]) UnsafeFromSome() A
- func (o Option[A]) UnwrapOr(a A) A
- func (o Option[A]) UnwrapOrFunc(f func() A) A
- func (o Option[A]) UnwrapOrFuncErr(f func() (A, error)) (A, error)
- func (o Option[A]) WhenSome(f func(A))
- type Queue
- type Reducer
- type Set
- func (s Set[T]) Add(e T)
- func (s Set[T]) Contains(e T) bool
- func (s Set[T]) Diff(other Set[T]) Set[T]
- func (s Set[T]) Equal(other Set[T]) bool
- func (s Set[T]) Intersect(other Set[T]) Set[T]
- func (s Set[T]) Remove(e T)
- func (s Set[T]) Subset(other Set[T]) bool
- func (s Set[T]) ToSlice() []T
- func (s Set[T]) Union(other Set[T]) Set[T]
Constants ¶
const (
// DefaultQueueSize is the default size to use for concurrent queues.
DefaultQueueSize = 10
)
Variables ¶
This section is empty.
Functions ¶
func ChainOption ¶
ChainOption transforms a function A -> Option[B] into one that accepts an Option[A] as an argument.
ChainOption : (A -> Option[B]) -> Option[A] -> Option[B].
func ElimOption ¶
ElimOption is the universal Option eliminator. It can be used to safely handle all possible values inside the Option by supplying two continuations.
ElimOption : (Option[A], () -> B, A -> B) -> B.
func LiftA2Option ¶
LiftA2Option transforms a pure function (A, B) -> C into one that will operate in an Option context. For the returned function, if either of its arguments are None, then the result will be None.
LiftA2Option : ((A, B) -> C) -> (Option[A], Option[B]) -> Option[C].
func MapOption ¶
MapOption transforms a pure function A -> B into one that will operate inside the Option context.
MapOption : (A -> B) -> Option[A] -> Option[B].
func MapOptionZ ¶ added in v1.0.2
MapOptionZ transforms a pure function A -> B into one that will operate inside the Option context. Unlike MapOption, this function will return the default/zero argument of the return type if the Option is empty.
func RecvOrTimeout ¶ added in v1.0.2
RecvOrTimeout attempts to recv over chan c, returning the value. If the timeout passes before the recv succeeds, an error is returned
func RecvResp ¶ added in v1.0.2
RecvResp takes three channels: a response channel, an error channel and a quit channel. If either of these channels are sent on, then the function will exit with that response. This can be used to wait for a response, error, or a quit signal.
func Reduce ¶ added in v1.0.2
Reduce takes a slice of something, and a reducer, and produces a final accumulated value.
func SendOrQuit ¶ added in v1.0.2
SendOrQuit attempts to and a message through channel c. If this succeeds, then bool is returned. Otherwise if a quit signal is received first, then false is returned.
func SetDiff ¶ added in v1.0.2
func SetDiff[T comparable](a, b []T) []T
SetDiff returns all the items that are in the first set but not in the second.
Types ¶
type ConcurrentQueue ¶ added in v1.0.2
type ConcurrentQueue[T any] struct { // contains filtered or unexported fields }
ConcurrentQueue is a typed concurrent-safe FIFO queue with unbounded capacity. Clients interact with the queue by pushing items into the in channel and popping items from the out channel. There is a goroutine that manages moving items from the in channel to the out channel in the correct order that must be started by calling Start().
func NewConcurrentQueue ¶ added in v1.0.2
func NewConcurrentQueue[T any](bufferSize int) *ConcurrentQueue[T]
NewConcurrentQueue constructs a ConcurrentQueue. The bufferSize parameter is the capacity of the output channel. When the size of the queue is below this threshold, pushes do n[?12;4$yot incur the overhead of the less efficient overflow structure.
func (*ConcurrentQueue[T]) ChanIn ¶ added in v1.0.2
func (cq *ConcurrentQueue[T]) ChanIn() chan<- T
ChanIn returns a channel that can be used to push new items into the queue.
func (*ConcurrentQueue[T]) ChanOut ¶ added in v1.0.2
func (cq *ConcurrentQueue[T]) ChanOut() <-chan T
ChanOut returns a channel that can be used to pop items from the queue.
func (*ConcurrentQueue[T]) Start ¶ added in v1.0.2
func (cq *ConcurrentQueue[T]) Start()
Start begins a goroutine that manages moving items from the in channel to the out channel. The queue tries to move items directly to the out channel minimize overhead, but if the out channel is full it pushes items to an overflow queue. This must be called before using the queue.
func (*ConcurrentQueue[T]) Stop ¶ added in v1.0.2
func (cq *ConcurrentQueue[T]) Stop()
Stop ends the goroutine that moves items from the in channel to the out channel. This does not clear the queue state, so the queue can be restarted without dropping items.
type Either ¶ added in v1.0.2
Either is a type that can be either left or right.
type EventDistributor ¶ added in v1.0.2
type EventDistributor[T any] struct { // contains filtered or unexported fields }
EventDistributor is a struct type that helps to distribute events to multiple subscribers.
func NewEventDistributor ¶ added in v1.0.2
func NewEventDistributor[T any]() *EventDistributor[T]
NewEventDistributor creates a new event distributor of the declared type.
func (*EventDistributor[T]) NotifySubscribers ¶ added in v1.0.2
func (d *EventDistributor[T]) NotifySubscribers(events ...T)
NotifySubscribers sends the given events to all subscribers.
func (*EventDistributor[T]) RegisterSubscriber ¶ added in v1.0.2
func (d *EventDistributor[T]) RegisterSubscriber(subscriber *EventReceiver[T])
RegisterSubscriber adds a new subscriber for receiving events.
func (*EventDistributor[T]) RemoveSubscriber ¶ added in v1.0.2
func (d *EventDistributor[T]) RemoveSubscriber( subscriber *EventReceiver[T]) error
RemoveSubscriber removes the given subscriber and also stops it from processing events.
type EventPublisher ¶ added in v1.0.2
type EventPublisher[T any, Q any] interface { // RegisterSubscriber adds a new subscriber for receiving events. The // deliverExisting boolean indicates whether already existing items // should be sent to the NewItemCreated channel when the subscription is // started. An optional deliverFrom can be specified to indicate from // which timestamp/index/marker onward existing items should be // delivered on startup. If deliverFrom is nil/zero/empty then all // existing items will be delivered. RegisterSubscriber(receiver *EventReceiver[T], deliverExisting bool, deliverFrom Q) error // RemoveSubscriber removes the given subscriber and also stops it from // processing events. RemoveSubscriber(subscriber *EventReceiver[T]) error }
EventPublisher is an interface type for a component that offers event based subscriptions for publishing events.
type EventReceiver ¶ added in v1.0.2
type EventReceiver[T any] struct { // NewItemCreated is sent to when a new item was created successfully. NewItemCreated *ConcurrentQueue[T] // ItemRemoved is sent to when an existing item was removed. ItemRemoved *ConcurrentQueue[T] // contains filtered or unexported fields }
EventReceiver is a struct type that holds two queues for new and removed items respectively.
func NewEventReceiver ¶ added in v1.0.2
func NewEventReceiver[T any](queueSize int) *EventReceiver[T]
NewEventReceiver creates a new event receiver with concurrent queues of the given size.
func (*EventReceiver[T]) ID ¶ added in v1.0.2
func (e *EventReceiver[T]) ID() uint64
ID returns the internal process-unique ID of the subscription.
func (*EventReceiver[T]) Stop ¶ added in v1.0.2
func (e *EventReceiver[T]) Stop()
Stop stops the receiver from processing events.
type Option ¶
type Option[A any] struct { // contains filtered or unexported fields }
Option[A] represents a value which may or may not be there. This is very often preferable to nil-able pointers.
func FlattenOption ¶
FlattenOption joins multiple layers of Options together such that if any of the layers is None, then the joined value is None. Otherwise the innermost Some value is returned.
FlattenOption : Option[Option[A]] -> Option[A].
func (Option[A]) Alt ¶
Alt chooses the left Option if it is full, otherwise it chooses the right option. This can be useful in a long chain if you want to choose between many different ways of producing the needed value.
Alt : Option[A] -> Option[A] -> Option[A].
func (Option[A]) IsSome ¶
IsSome returns true if the Option contains a value
IsSome : Option[A] -> bool.
func (Option[A]) UnsafeFromSome ¶ added in v1.0.1
func (o Option[A]) UnsafeFromSome() A
UnsafeFromSome can be used to extract the internal value. This will panic if the value is None() though.
func (Option[A]) UnwrapOr ¶
func (o Option[A]) UnwrapOr(a A) A
UnwrapOr is used to extract a value from an option, and we supply the default value in the case when the Option is empty.
UnwrapOr : (Option[A], A) -> A.
func (Option[A]) UnwrapOrFunc ¶ added in v1.0.2
func (o Option[A]) UnwrapOrFunc(f func() A) A
UnwrapOrFunc is used to extract a value from an option, and we supply a thunk to be evaluated in the case when the Option is empty.
func (Option[A]) UnwrapOrFuncErr ¶ added in v1.0.2
UnwrapOrFuncErr is used to extract a value from an option, and we supply a thunk to be evaluated in the case when the Option is empty.
func (Option[A]) WhenSome ¶
func (o Option[A]) WhenSome(f func(A))
WhenSome is used to conditionally perform a side-effecting function that accepts a value of the type that parameterizes the option. If this function performs no side effects, WhenSome is useless.
WhenSome : (Option[A], A -> ()) -> ().
type Queue ¶ added in v1.0.2
type Queue[T any] struct { // contains filtered or unexported fields }
Queue is a generic queue implementation.
func (*Queue[T]) Dequeue ¶ added in v1.0.2
Dequeue removes an element from the front of the Queue. If there're no items in the queue, then None is returned.
func (*Queue[T]) Enqueue ¶ added in v1.0.2
func (q *Queue[T]) Enqueue(value ...T)
Enqueue adds one or more an items to the end of the Queue.
type Reducer ¶ added in v1.0.2
type Reducer[T, V any] func(accum T, value V) T
Reducer represents a function that takes an accumulator and the value, then returns a new accumulator.
type Set ¶ added in v1.0.2
type Set[T comparable] map[T]struct{}
Set is a generic set using type params that supports the following operations: diff, union, intersection, and subset.
func NewSet ¶ added in v1.0.2
func NewSet[T comparable](elems ...T) Set[T]
NewSet returns a new set with the given elements.
func (Set[T]) Remove ¶ added in v1.0.2
func (s Set[T]) Remove(e T)
Remove removes an element from the set.