ds

package
v0.9.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 17, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package ds provides some fundamental data structures.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppendMap

func AppendMap[K comparable, V any, M ~map[K]V](m *M, key K, value V)

AppendMap appends key to the map, optionally initializing map if nil.

func Equals

func Equals[T comparable](s, t []T) bool

func FirstN added in v0.4.10

func FirstN[T any](s []T, n int) []T

func LessFunc added in v0.9.1

func LessFunc[E any, K constraints.Ordered](key func(e E) K) func(e1, e2 E) bool

func Map added in v0.3.0

func Map[T, U any](s []T, mapper func(item T) U) []U

func MergeMap

func MergeMap[K comparable, V any](m1, m2 map[K]V) map[K]V

func ReadAll added in v0.2.0

func ReadAll[T any](ch <-chan T) []T

func SliceOfPtr

func SliceOfPtr[T any](s []T) []*T

Types

type Mutex

type Mutex[K comparable] struct {
	// contains filtered or unexported fields
}

Mutex is a simple replacement for golang.org/x/sync/singleflight. Includes ideas from https://cs.opensource.google/go/x/sync/+/master:singleflight/singleflight.go;drc=30421366ff761c80b137fb5084b32278ed41fab0.

func NewMutex

func NewMutex[K comparable]() *Mutex[K]

func (*Mutex[K]) Lock

func (m *Mutex[K]) Lock(key K)

func (*Mutex[K]) TryLock

func (m *Mutex[K]) TryLock(key K) (ok bool)

func (*Mutex[K]) Unlock

func (m *Mutex[K]) Unlock(key K)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL