-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterfaces.go
117 lines (92 loc) · 1.76 KB
/
interfaces.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package sexp
import "github.com/feyeleanor/chain"
import "reflect"
type Typed interface {
Type() reflect.Type
}
type Blitter interface {
BlockCopy(destination, source, count int)
BlockClear(start, count int)
}
type Equatable interface {
Equal(interface{}) bool
}
type Linear interface {
Len() int
}
type IndexedReader interface {
Linear
At(index int) interface{}
}
type IndexedWriter interface {
Set(index int, value interface{})
Clear(index int)
}
type Indexable interface {
IndexedReader
IndexedWriter
}
type MappedReader interface {
At(key interface{}) interface{}
Keys() []interface{}
}
type MappedWriter interface {
Set(key interface{}, value interface{})
Clear(key interface{})
}
type Mappable interface {
Linear
MappedReader
MappedWriter
}
type Reversible interface {
Reverse()
}
type Repeatable interface {
Repeat(count int)
}
type Appendable interface {
Append(interface{})
}
type FixedSize interface {
Linear
Cap() int
}
type Resizeable interface {
FixedSize
At(index int) interface{}
Set(index int, value interface{})
Reallocate(l, c int)
}
type Nested interface {
Depth() int
}
type Flattenable interface {
Flatten()
}
type Sliceable interface {
Subslice(start, end int) interface{}
}
type Overwriteable interface {
Overwrite(offset interface{}, container interface{})
}
type Combinable interface {
Combine(interface{}, func(interface{}, interface{}) interface{}) interface{}
}
type Linkable interface {
Linear
Start() chain.Node
End() chain.Node
}
type Deque interface {
PopFirst() interface{}
PopLast() interface{}
Append(i interface{})
Prepend(i interface{})
}
type Feeder interface {
Feed(chan interface{}, func(interface{}) interface{})
}
type Piper interface {
Pipe(func(interface{}) interface{}) chan interface{}
}