NewSet creates new Set.
(ctx context.Context)
| 25 | |
| 26 | // NewSet creates new Set. |
| 27 | func NewSet(ctx context.Context) (*Set, error) { |
| 28 | return NewSetWithOptions(ctx, nil) |
| 29 | } |
| 30 | |
| 31 | // NewSetWithOptions creates new Set with options. |
| 32 | func NewSetWithOptions(ctx context.Context, opt *Options) (*Set, error) { |