Documentation ¶
Index ¶
- func AllMatch[T any](seq iter.Seq[T], test Predicate[T]) bool
- func AllMatch2[K, V any](seq iter.Seq2[K, V], test Predicate2[K, V]) bool
- func AnyMatch[T any](seq iter.Seq[T], test Predicate[T]) bool
- func AnyMatch2[K, V any](seq iter.Seq2[K, V], test Predicate2[K, V]) bool
- func Collect[T any](seq iter.Seq[T]) (result []T)
- func Collect2[K, V any](seq iter.Seq2[K, V]) (ks []K, vs []V)
- func Count[T any](seq iter.Seq[T]) (count int64)
- func Count2[K, V any](seq iter.Seq2[K, V]) (count int64)
- func CountForEach[T any](seq iter.Seq[T], accept Consumer[T]) (count int64)
- func Distinct[T any, C comparable](seq iter.Seq[T], f Function[T, C]) iter.Seq[T]
- func Distinct2[K, V any, C comparable](seq iter.Seq2[K, V], f Function2[K, V, C]) iter.Seq2[K, V]
- func Enumerate[T any](seq iter.Seq[T]) iter.Seq[types.Pair[int, T]]
- func Enumerate2[K, V any](seq iter.Seq2[K, V]) iter.Seq2[int, types.Pair[K, V]]
- func Filter[T any](seq iter.Seq[T], test Predicate[T]) iter.Seq[T]
- func Filter2[K, V any](seq iter.Seq2[K, V], test Predicate2[K, V]) iter.Seq2[K, V]
- func First[T any](seq iter.Seq[T]) (T, bool)
- func FlatMap[T, R any](seq iter.Seq[T], flatten Function[T, iter.Seq[R]]) iter.Seq[R]
- func FlatMap2[K, V, R any](seq iter.Seq2[K, V], flatten Function2[K, V, iter.Seq[R]]) iter.Seq[R]
- func FlatMap3[K, V, RK, RV any](seq iter.Seq2[K, V], flatten Function2[K, V, iter.Seq2[RK, RV]]) iter.Seq2[RK, RV]
- func Fold[T, R any](seq iter.Seq[T], initVal R, acc BiFunction[R, T, R]) (result R)
- func Fold2[K, V, R any](seq iter.Seq2[K, V], initVal R, acc BiFunction2[R, K, V, R]) (result R)
- func Fold3[K, V, RK, RV any](seq iter.Seq2[K, V], initKey RK, initVal RV, ...) (resultKey RK, resultVal RV)
- func ForEach[T any](seq iter.Seq[T], accept Consumer[T])
- func ForEach2[K, V any](seq iter.Seq2[K, V], accept Consumer2[K, V])
- func IsSorted[T any](seq iter.Seq[T], cmp Comparator[T]) bool
- func IsSorted2[K, V any](seq iter.Seq2[K, V], cmp Comparator2[K, V]) bool
- func Limit[T any, Number constraints.Number](seq iter.Seq[T], limit Number) iter.Seq[T]
- func Limit2[K, V any, Number constraints.Number](seq iter.Seq2[K, V], limit Number) iter.Seq2[K, V]
- func Map[T, R any](seq iter.Seq[T], f Function[T, R]) iter.Seq[R]
- func Map2[K, V, R any](seq iter.Seq2[K, V], f Function2[K, V, R]) iter.Seq[R]
- func Map3[K, V, RK, RV any](seq iter.Seq2[K, V], f Function3[K, V, RK, RV]) iter.Seq2[RK, RV]
- func NoneMatch[T any](seq iter.Seq[T], test Predicate[T]) bool
- func NoneMatch2[K, V any](seq iter.Seq2[K, V], test Predicate2[K, V]) bool
- func Peek[T any](seq iter.Seq[T], accept Consumer[T]) iter.Seq[T]
- func Peek2[K, V any](seq iter.Seq2[K, V], accept Consumer2[K, V]) iter.Seq2[K, V]
- func Reduce[T any](seq iter.Seq[T], acc BinaryOperator[T]) (T, bool)
- func Reduce2[K, V any](seq iter.Seq2[K, V], acc BinaryOperator2[K, V]) (K, V, bool)
- func Seq2Seq[K, V any](seq2 iter.Seq2[K, V]) iter.Seq[types.Pair[K, V]]
- func SeqSeq2[T any](seq iter.Seq[T]) iter.Seq2[int, T]
- func Skip[T any, Number constraints.Number](seq iter.Seq[T], skip Number) iter.Seq[T]
- func Skip2[K, V any, Number constraints.Number](seq iter.Seq2[K, V], skip Number) iter.Seq2[K, V]
- func Sorted[T any](it iter.Seq[T], cmp Comparator[T]) iter.Seq[T]
- func Sorted2[K, V any](it iter.Seq2[K, V], cmp Comparator2[K, V]) iter.Seq2[K, V]
- func Zip[T any](seq1 iter.Seq[T], seq2 iter.Seq[T]) iter.Seq[T]
- func Zip2[K, V any](seq1 iter.Seq2[K, V], seq2 iter.Seq2[K, V]) iter.Seq2[K, V]
- type BiFunction
- type BiFunction2
- type BiFunction3
- type BinaryOperator
- type BinaryOperator2
- type Comparator
- type Comparator2
- type Consumer
- type Consumer2
- type Function
- type Function2
- type Function3
- type Predicate
- type Predicate2
- type Seq
- func (it Seq[T]) All(test Predicate[T]) bool
- func (it Seq[T]) Any(test Predicate[T]) bool
- func (it Seq[T]) Collect() []T
- func (it Seq[T]) Count() int64
- func (it Seq[T]) Distinct(f Function[T, int]) Stream[T]
- func (it Seq[T]) Filter(test Predicate[T]) Stream[T]
- func (it Seq[T]) First() (T, bool)
- func (it Seq[T]) FlatMap(f Function[T, iter.Seq[T]]) Stream[T]
- func (it Seq[T]) Fold(initVal T, acc BinaryOperator[T]) T
- func (it Seq[T]) ForEach(accept Consumer[T])
- func (it Seq[T]) IsSorted(cmp Comparator[T]) bool
- func (it Seq[T]) Iter() iteri.Iterator[T]
- func (it Seq[T]) Limit(limit int64) Stream[T]
- func (it Seq[T]) Map(f Function[T, T]) Stream[T]
- func (it Seq[T]) None(test Predicate[T]) bool
- func (it Seq[T]) Peek(accept Consumer[T]) Stream[T]
- func (it Seq[T]) Reduce(acc BinaryOperator[T]) (T, bool)
- func (it Seq[T]) Seq() iter.Seq[T]
- func (it Seq[T]) Skip(skip int64) Stream[T]
- func (it Seq[T]) Sorted(cmp Comparator[T]) Stream[T]
- func (it Seq[T]) Zip(seq iter.Seq[T]) Stream[T]
- type Seq2
- func ChannelAll2[T any](c chan T) Seq2[int, T]
- func HashMapAll2[K comparable, V any](m map[K]V) Seq2[K, V]
- func RangeAll2[T constraints.Number](begin, end, step T) Seq2[int, T]
- func SliceAll2[T any](input []T) Seq2[int, T]
- func SliceBackward2[T any](input []T) Seq2[int, T]
- func StringAll2(input string) Seq2[int, rune]
- type Stream
- type Stream2
- type Supplier
- type Supplier2
- type UnaryOperator
- type UnaryOperator2
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AllMatch ¶ added in v0.1.0
AllMatch test if every elements are all match the Predicate. 是否每个元素都满足条件
func CountForEach ¶ added in v0.1.0
func FlatMap ¶ added in v0.1.0
FlatMap transform each element in Seq[T] to a new Seq[R]. 将原本序列中的每个元素都转换为一个新的序列, 并将所有转换后的序列依次连接起来生成一个新的序列
func Fold ¶ added in v0.1.0
func Fold[T, R any](seq iter.Seq[T], initVal R, acc BiFunction[R, T, R]) (result R)
Fold accumulate each element using the BiFunction starting from the initial value. 从初始值开始, 通过 acc 函数累加每个元素
func Fold2 ¶
func Fold2[K, V, R any](seq iter.Seq2[K, V], initVal R, acc BiFunction2[R, K, V, R]) (result R)
func Fold3 ¶
func Fold3[K, V, RK, RV any](seq iter.Seq2[K, V], initKey RK, initVal RV, acc BiFunction3[RK, RV, K, V, RK, RV]) (resultKey RK, resultVal RV)
func IsSorted ¶ added in v0.1.0
func IsSorted[T any](seq iter.Seq[T], cmp Comparator[T]) bool
IsSorted 对序列中的元素是否排序
func NoneMatch2 ¶
func NoneMatch2[K, V any](seq iter.Seq2[K, V], test Predicate2[K, V]) bool
func Peek ¶ added in v0.1.0
Peek visit every element in the Seq and leave them on the Seq. 访问序列中的每个元素而不消费它
func Reduce ¶ added in v0.1.0
func Reduce[T any](seq iter.Seq[T], acc BinaryOperator[T]) (T, bool)
Reduce accumulate each element using the binary operation. 使用给定的累加函数, 累加序列中的每个元素. 序列中可能没有元素因此返回的是 Optional
Types ¶
type BiFunction2 ¶
type BiFunction2[K, V, R, U any] func(K, V, R) U
type BiFunction3 ¶
type BiFunction3[K, V, RK, RV, UK, UV any] func(K, V, RK, RV) (UK, UV)
type BinaryOperator ¶ added in v0.1.0
type BinaryOperator[T any] func(T, T) T
BinaryOperator 输入两个相同类型的参数,对其做二元运算,返回相同类型的结果
type BinaryOperator2 ¶
type BinaryOperator2[K, V any] func(K, V, K, V) (K, V)
type Comparator ¶ added in v0.1.0
Comparator 比较两个元素. 第一个元素大于第二个元素时,返回正数; 第一个元素小于第二个元素时,返回负数; 否则返回 0.
type Comparator2 ¶
Comparator 比较两个元素. 第一个元素大于第二个元素时,返回正数; 第一个元素小于第二个元素时,返回负数; 否则返回 0.
type Seq ¶ added in v0.1.0
func ChannelAll ¶ added in v0.1.0
func HashMapAll ¶ added in v0.1.0
func HashMapAll[K comparable, V any](m map[K]V) Seq[types.Pair[K, V]]
func RangeAll ¶ added in v0.1.0
func RangeAll[T constraints.Number](begin, end, step T) Seq[T]
func SliceBackward ¶ added in v0.1.0
func (Seq[T]) Fold ¶ added in v0.1.0
func (it Seq[T]) Fold(initVal T, acc BinaryOperator[T]) T
func (Seq[T]) IsSorted ¶ added in v0.1.0
func (it Seq[T]) IsSorted(cmp Comparator[T]) bool
func (Seq[T]) Reduce ¶ added in v0.1.0
func (it Seq[T]) Reduce(acc BinaryOperator[T]) (T, bool)
func (Seq[T]) Sorted ¶ added in v0.1.0
func (it Seq[T]) Sorted(cmp Comparator[T]) Stream[T]
type Seq2 ¶
func ChannelAll2 ¶
func HashMapAll2 ¶
func HashMapAll2[K comparable, V any](m map[K]V) Seq2[K, V]
func SliceBackward2 ¶
type Stream ¶ added in v0.1.0
type Stream[T any] interface { Seq() iter.Seq[T] Filter(Predicate[T]) Stream[T] Map(Function[T, T]) Stream[T] //同类型转换,没啥意义 FlatMap(Function[T, iter.Seq[T]]) Stream[T] //同Map Peek(Consumer[T]) Stream[T] Sorted(Comparator[T]) Stream[T] Distinct(Function[T, int]) Stream[T] Limit(int64) Stream[T] Skip(int64) Stream[T] Zip(iter.Seq[T]) Stream[T] ForEach(Consumer[T]) Collect() []T IsSorted(Comparator[T]) bool All(Predicate[T]) bool // every None(Predicate[T]) bool Any(Predicate[T]) bool // some Reduce(acc BinaryOperator[T]) (T, bool) Fold(initVal T, acc BinaryOperator[T]) T First() (T, bool) Count() int64 }
type Stream2 ¶
type Stream2[K, V any] interface { Seq() iter.Seq[types.Pair[K, V]] Seq2() iter.Seq2[K, V] Filter(Predicate2[K, V]) Stream2[K, V] Map(Function2[K, V, V]) Stream2[K, V] //同类型转换,没啥意义 FlatMap(Function2[K, V, iter.Seq2[K, V]]) Stream2[K, V] //同Map Peek(Consumer2[K, V]) Stream2[K, V] Distinct(Function2[K, V, int]) Stream2[K, V] SortedByKeys(Comparator[K]) Stream2[K, V] SortedByValues(Comparator[V]) Stream2[K, V] Limit(int64) Stream2[K, V] Skip(int64) Stream2[K, V] ForEach(Consumer2[K, V]) Collect() ([]K, []V) AllMatch(Predicate2[K, V]) bool NoneMatch(Predicate2[K, V]) bool AnyMatch(Predicate2[K, V]) bool First() (K, V) Count() int64 }
type Supplier2 ¶
type Supplier2[K, V any] func() (K, V)
Dont'use please use types.Pair And Seq Supplier 产生一个元素
type UnaryOperator ¶ added in v0.1.0
type UnaryOperator[T any] func(T) T
UnaryOperator 对输入进行一元运算返回相同类型的结果
type UnaryOperator2 ¶
type UnaryOperator2[K, V any] func(K, V) (K, V)