Documentation ¶
Index ¶
- func Clean[K comparable, V comparable](m map[K]V) map[K]V
- func Clear[K comparable, V any](m map[K]V) map[K]V
- func Clone[K comparable, V any](m map[K]V) map[K]V
- func Collect[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, bool, error)) (map[K]V2, error)
- func Count[K comparable, V comparable](m map[K]V, v V) int
- func CountBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (int, error)
- func Distinct[K comparable, V comparable](m map[K]V) map[K]V
- func Equal[K comparable, V comparable](m1 map[K]V, m2 map[K]V) bool
- func EqualBy[K comparable, V any](m1 map[K]V, m2 map[K]V, f func(V, V) (bool, error)) (bool, error)
- func Exists[K comparable, V comparable](m map[K]V, v V) bool
- func ExistsBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (bool, error)
- func Fill[K comparable, V any](m map[K]V, v V)
- func FillBy[K comparable, V any](m map[K]V, f func(K) (V, error)) error
- func FillZero[K comparable, V any](m map[K]V)
- func Filter[K comparable, V comparable](m map[K]V, v V) map[K]V
- func FilterBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, error)
- func FilterNot[K comparable, V comparable](m map[K]V, v V) map[K]V
- func FilterNotBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, error)
- func Find[K comparable, V comparable](m map[K]V, v V) (V, bool)
- func FindBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (V, bool, error)
- func Fold[K comparable, V1 any, V2 any](m map[K]V1, v V2, f func(V2, K, V1) (V2, error)) (V2, error)
- func ForAll[K comparable, V comparable](m map[K]V, v V) bool
- func ForAllBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (bool, error)
- func ForEach[K comparable, V any](m map[K]V, f func(K, V) error) error
- func From[K comparable, V any](tuples ...tuple.T2[K, V]) map[K]V
- func FromIter[K comparable, V any](iter iter.Iter[tuple.T2[K, V]]) map[K]V
- func Get[K comparable, V any](m map[K]V, k K) (V, bool)
- func GetOrElse[K comparable, V any](m map[K]V, k K, v V) V
- func GetOrFunc[K comparable, V any](m map[K]V, k K, f func() (V, error)) (V, error)
- func GetOrNil[K comparable, V any](m map[K]V, k K) *V
- func GetOrZero[K comparable, V any](m map[K]V, k K) V
- func GroupBy[K1 comparable, K2 comparable, V any](m map[K1]V, f func(K1, V) (K2, error)) (map[K2][]V, error)
- func IsEmpty[K comparable, V any](m map[K]V) bool
- func Keys[K comparable, V any](m map[K]V) []K
- func Len[K comparable, V any](m map[K]V) int
- func Map[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, error)) (map[K]V2, error)
- func Max[K comparable, V constraints.Ordered](m map[K]V) V
- func MaxBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
- func Min[K comparable, V constraints.Ordered](m map[K]V) V
- func MinBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
- func MustCollect[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, bool, error)) map[K]V2
- func MustCountBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) int
- func MustEqualBy[K comparable, V any](m1 map[K]V, m2 map[K]V, f func(V, V) (bool, error)) bool
- func MustExistsBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) bool
- func MustFilterBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) map[K]V
- func MustFilterNotBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) map[K]V
- func MustFindBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (V, bool)
- func MustFold[K comparable, V1 any, V2 any](m map[K]V1, v V2, f func(V2, K, V1) (V2, error)) V2
- func MustForAllBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) bool
- func MustForEach[K comparable, V any](m map[K]V, f func(K, V) error)
- func MustGetOrFunc[K comparable, V any](m map[K]V, k K, f func() (V, error)) V
- func MustGroupBy[K1 comparable, K2 comparable, V any](m map[K1]V, f func(K1, V) (K2, error)) map[K2][]V
- func MustMap[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, error)) map[K]V2
- func MustMaxBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) V2
- func MustMinBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) V2
- func MustPartitionBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, map[K]V)
- func MustReduce[K comparable, V any](m map[K]V, f func(V, K, V) (V, error)) V
- func MustSumBy[K comparable, V1 any, V2 constraints.Ordered | constraints.Complex](m map[K]V1, f func(K, V1) (V2, error)) V2
- func Partition[K comparable, V comparable](m map[K]V, v V) (map[K]V, map[K]V)
- func PartitionBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, map[K]V, error)
- func Reduce[K comparable, V any](m map[K]V, f func(V, K, V) (V, error)) (V, error)
- func Replace[K comparable, V comparable](m map[K]V, old V, new V) map[K]V
- func ReplaceAll[K comparable, V comparable](m map[K]V, old V, new V) map[K]V
- func Sample[K comparable, V any](m map[K]V, r *rand.Rand) V
- func Sum[K comparable, V constraints.Ordered | constraints.Complex](m map[K]V) V
- func SumBy[K comparable, V1 any, V2 constraints.Ordered | constraints.Complex](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
- func ToIter[K comparable, V any](m map[K]V) iter.Iter[tuple.T2[K, V]]
- func ToSlice[K comparable, V any](m map[K]V) []tuple.T2[K, V]
- func Unzip2[K comparable, V1 any, V2 any](m map[K]tuple.T2[V1, V2]) (map[K]V1, map[K]V2)
- func Unzip3[K comparable, V1 any, V2 any, V3 any](m map[K]tuple.T3[V1, V2, V3]) (map[K]V1, map[K]V2, map[K]V3)
- func Unzip4[K comparable, V1 any, V2 any, V3 any, V4 any](m map[K]tuple.T4[V1, V2, V3, V4]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4)
- func Unzip5[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any](m map[K]tuple.T5[V1, V2, V3, V4, V5]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4, map[K]V5)
- func Unzip6[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any, V6 any](m map[K]tuple.T6[V1, V2, V3, V4, V5, V6]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4, map[K]V5, map[K]V6)
- func Values[K comparable, V any](m map[K]V) []V
- func Zip2[K comparable, V1 any, V2 any](m1 map[K]V1, m2 map[K]V2) map[K]tuple.T2[V1, V2]
- func Zip3[K comparable, V1 any, V2 any, V3 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3) map[K]tuple.T3[V1, V2, V3]
- func Zip4[K comparable, V1 any, V2 any, V3 any, V4 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3, m4 map[K]V4) map[K]tuple.T4[V1, V2, V3, V4]
- func Zip5[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3, m4 map[K]V4, m5 map[K]V5) map[K]tuple.T5[V1, V2, V3, V4, V5]
- func Zip6[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any, V6 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3, m4 map[K]V4, m5 map[K]V5, m6 map[K]V6) map[K]tuple.T6[V1, V2, V3, V4, V5, V6]
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Collect ¶
func Collect[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, bool, error)) (map[K]V2, error)
条件を満たす値を変換したマップを返す。
func Equal ¶
func Equal[K comparable, V comparable](m1 map[K]V, m2 map[K]V) bool
他のマップと一致していたらtrueを返す。
func FillBy ¶
func FillBy[K comparable, V any](m map[K]V, f func(K) (V, error)) error
すべての要素に関数の実行結果を代入する。
func FilterBy ¶
func FilterBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, error)
条件を満たす値だけのマップを返す。
func FilterNot ¶
func FilterNot[K comparable, V comparable](m map[K]V, v V) map[K]V
一致する値を除いたマップを返す。
func FilterNotBy ¶
func FilterNotBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, error)
条件を満たす値を除いたマップを返す。
func Fold ¶
func Fold[K comparable, V1 any, V2 any](m map[K]V1, v V2, f func(V2, K, V1) (V2, error)) (V2, error)
初期値と値を順に演算する。
func GetOrFunc ¶ added in v0.0.3
func GetOrFunc[K comparable, V any](m map[K]V, k K, f func() (V, error)) (V, error)
指定したキーの値を返す。無い場合は関数の実行結果を返す。
func GetOrNil ¶ added in v0.0.6
func GetOrNil[K comparable, V any](m map[K]V, k K) *V
指定したキーの値のポインタを返す。無い場合はnilを返す。
func GetOrZero ¶ added in v0.0.6
func GetOrZero[K comparable, V any](m map[K]V, k K) V
指定したキーの値を返す。無い場合はゼロ値を返す。
func GroupBy ¶
func GroupBy[K1 comparable, K2 comparable, V any](m map[K1]V, f func(K1, V) (K2, error)) (map[K2][]V, error)
値ごとに関数の返すキーでグルーピングしたマップを返す。
func Map ¶
func Map[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, error)) (map[K]V2, error)
値を変換したマップを返す。
func MaxBy ¶
func MaxBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
値を変換して最大の値を返す。
func MinBy ¶
func MinBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
値を変換して最小の値を返す。
func MustCollect ¶ added in v0.0.5
func MustCollect[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, bool, error)) map[K]V2
条件を満たす値を変換したマップを返す。実行中にエラーが起きた場合 panic する。
func MustCountBy ¶ added in v0.0.5
func MustCountBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) int
条件を満たす値の数を返す。実行中にエラーが起きた場合 panic する。
func MustEqualBy ¶ added in v0.0.5
func MustEqualBy[K comparable, V any](m1 map[K]V, m2 map[K]V, f func(V, V) (bool, error)) bool
他のマップと関数で比較し、一致していたらtrueを返す。実行中にエラーが起きた場合 panic する。
func MustExistsBy ¶ added in v0.0.5
func MustExistsBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) bool
条件を満たす値が存在したらtrueを返す。実行中にエラーが起きた場合 panic する。
func MustFilterBy ¶ added in v0.0.5
func MustFilterBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) map[K]V
条件を満たす値だけのマップを返す。実行中にエラーが起きた場合 panic する。
func MustFilterNotBy ¶ added in v0.0.5
func MustFilterNotBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) map[K]V
条件を満たす値を除いたマップを返す。実行中にエラーが起きた場合 panic する。
func MustFindBy ¶ added in v0.0.5
func MustFindBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (V, bool)
条件を満たす値を返す。実行中にエラーが起きた場合 panic する。
func MustFold ¶ added in v0.0.5
func MustFold[K comparable, V1 any, V2 any](m map[K]V1, v V2, f func(V2, K, V1) (V2, error)) V2
初期値と値を順に演算する。実行中にエラーが起きた場合 panic する。
func MustForAllBy ¶ added in v0.0.5
func MustForAllBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) bool
すべての値が条件を満たせばtrueを返す。実行中にエラーが起きた場合 panic する。
func MustForEach ¶ added in v0.0.5
func MustForEach[K comparable, V any](m map[K]V, f func(K, V) error)
値ごとに関数を実行する。実行中にエラーが起きた場合 panic する。
func MustGetOrFunc ¶ added in v0.0.5
func MustGetOrFunc[K comparable, V any](m map[K]V, k K, f func() (V, error)) V
指定したキーの値を返す。無い場合は関数の実行結果を返す。実行中にエラーが起きた場合 panic する。
func MustGroupBy ¶ added in v0.0.5
func MustGroupBy[K1 comparable, K2 comparable, V any](m map[K1]V, f func(K1, V) (K2, error)) map[K2][]V
値ごとに関数の返すキーでグルーピングしたマップを返す。実行中にエラーが起きた場合 panic する。
func MustMap ¶ added in v0.0.5
func MustMap[K comparable, V1 any, V2 any](m map[K]V1, f func(K, V1) (V2, error)) map[K]V2
値を変換したマップを返す。実行中にエラーが起きた場合 panic する。
func MustMaxBy ¶ added in v0.0.5
func MustMaxBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) V2
値を変換して最大の値を返す。実行中にエラーが起きた場合 panic する。
func MustMinBy ¶ added in v0.0.5
func MustMinBy[K comparable, V1 any, V2 constraints.Ordered](m map[K]V1, f func(K, V1) (V2, error)) V2
値を変換して最小の値を返す。実行中にエラーが起きた場合 panic する。
func MustPartitionBy ¶ added in v0.0.5
func MustPartitionBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, map[K]V)
条件を満たすマップと満たさないマップを返す。実行中にエラーが起きた場合 panic する。
func MustReduce ¶ added in v0.0.5
func MustReduce[K comparable, V any](m map[K]V, f func(V, K, V) (V, error)) V
値を順に演算する。実行中にエラーが起きた場合 panic する。
func MustSumBy ¶ added in v0.0.5
func MustSumBy[K comparable, V1 any, V2 constraints.Ordered | constraints.Complex](m map[K]V1, f func(K, V1) (V2, error)) V2
値を変換して合計を返す。実行中にエラーが起きた場合 panic する。
func Partition ¶
func Partition[K comparable, V comparable](m map[K]V, v V) (map[K]V, map[K]V)
値の一致するイテレータと一致しないイテレータを返す。
func PartitionBy ¶
func PartitionBy[K comparable, V any](m map[K]V, f func(K, V) (bool, error)) (map[K]V, map[K]V, error)
条件を満たすマップと満たさないマップを返す。
func Reduce ¶
func Reduce[K comparable, V any](m map[K]V, f func(V, K, V) (V, error)) (V, error)
値を順に演算する。
func Replace ¶
func Replace[K comparable, V comparable](m map[K]V, old V, new V) map[K]V
ひとつめのoldをnewで置き換えたマップを返す。
func ReplaceAll ¶
func ReplaceAll[K comparable, V comparable](m map[K]V, old V, new V) map[K]V
すべてのoldをnewで置き換えたマップを返す。
func Sum ¶
func Sum[K comparable, V constraints.Ordered | constraints.Complex](m map[K]V) V
値の合計を返す。
func SumBy ¶
func SumBy[K comparable, V1 any, V2 constraints.Ordered | constraints.Complex](m map[K]V1, f func(K, V1) (V2, error)) (V2, error)
値を変換して合計を返す。
func Unzip2 ¶
func Unzip2[K comparable, V1 any, V2 any](m map[K]tuple.T2[V1, V2]) (map[K]V1, map[K]V2)
値のペアを分離して2つのマップを返す。
func Unzip3 ¶
func Unzip3[K comparable, V1 any, V2 any, V3 any](m map[K]tuple.T3[V1, V2, V3]) (map[K]V1, map[K]V2, map[K]V3)
値のペアを分離して3つのマップを返す。
func Unzip4 ¶
func Unzip4[K comparable, V1 any, V2 any, V3 any, V4 any](m map[K]tuple.T4[V1, V2, V3, V4]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4)
値のペアを分離して4つのマップを返す。
func Unzip5 ¶
func Unzip5[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any](m map[K]tuple.T5[V1, V2, V3, V4, V5]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4, map[K]V5)
値のペアを分離して5つのマップを返す。
func Unzip6 ¶
func Unzip6[K comparable, V1 any, V2 any, V3 any, V4 any, V5 any, V6 any](m map[K]tuple.T6[V1, V2, V3, V4, V5, V6]) (map[K]V1, map[K]V2, map[K]V3, map[K]V4, map[K]V5, map[K]V6)
値のペアを分離して5つのマップを返す。
func Zip2 ¶
func Zip2[K comparable, V1 any, V2 any](m1 map[K]V1, m2 map[K]V2) map[K]tuple.T2[V1, V2]
2つのマップの同じキーの値をペアにしたマップを返す。
func Zip3 ¶
func Zip3[K comparable, V1 any, V2 any, V3 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3) map[K]tuple.T3[V1, V2, V3]
3つのマップの同じキーの値をペアにしたマップを返す。
func Zip4 ¶
func Zip4[K comparable, V1 any, V2 any, V3 any, V4 any](m1 map[K]V1, m2 map[K]V2, m3 map[K]V3, m4 map[K]V4) map[K]tuple.T4[V1, V2, V3, V4]
4つのマップの同じキーの値をペアにしたマップを返す。
Types ¶
This section is empty.