-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenumerable.go
33 lines (31 loc) · 959 Bytes
/
enumerable.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package handy
type Enumerable[T any] interface {
Iterable[T]
Count() int
Any(func(T) bool) bool
All(func(T) bool) bool
Filter(func(T) bool) Enumerable[T]
Take(int) Enumerable[T]
TakeLast(int) Enumerable[T]
Skip(int) Enumerable[T]
SkipLast(int) Enumerable[T]
Distinct() Enumerable[T]
DistinctBy(func(T) any) Enumerable[T]
Union(Iterable[T]) Enumerable[T]
UnionBy(Iterable[T], func(T) any) Enumerable[T]
Intersect(Iterable[T]) Enumerable[T]
IntersectBy(Iterable[T], func(T) any) Enumerable[T]
Except(Iterable[T]) Enumerable[T]
ExceptBy(Iterable[T], func(T) any) Enumerable[T]
SequenceEqual(Iterable[T]) bool
SequenceEqualBy(Iterable[T], func(T) any) bool
Concat(...Iterable[T]) Enumerable[T]
First() (T, bool)
FirstOrDefault(T) T
Last() (T, bool)
LastOrDefault(T) T
OrderBy(func(T, T) int) Enumerable[T]
}
type Comparable interface {
ComparingKey() any
}