()
| 37 | } |
| 38 | |
| 39 | func NewSet() *Set { |
| 40 | return &Set{ |
| 41 | M: map[string]map[uint32]*core.Record{}, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // SAdd adds the specified members to the set stored at key. |
| 46 | func (s *Set) SAdd(key string, values [][]byte, records []*core.Record) error { |
no outgoing calls