-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
48 lines (38 loc) · 873 Bytes
/
options.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
package merkletree
import (
"context"
)
// Options for func
type Options struct {
// HashFunc interface
HashFunc IHashFunc
// SkipHash switch
SkipHash bool
// Options for implementations of the interface can be stored in a context
Context context.Context
}
// OptionFunc used to initialise
type OptionFunc func(opts *Options)
// NewOptions new options
func NewOptions(optionFunc ...OptionFunc) Options {
opts := Options{
Context: context.Background(),
HashFunc: DefaultHashFunc(),
}
for _, f := range optionFunc {
f(&opts)
}
return opts
}
// WithHashFunc option to configure hash function
func WithHashFunc(hashFunc IHashFunc) OptionFunc {
return func(o *Options) {
o.HashFunc = hashFunc
}
}
// WithSkipHash option to configure skip hash
func WithSkipHash(skipHash bool) OptionFunc {
return func(o *Options) {
o.SkipHash = skipHash
}
}