(score int, member string)
| 1037 | } |
| 1038 | |
| 1039 | func (fzs *FZSet) exists(score int, member string) bool { |
| 1040 | v, ok := fzs.dict[member] |
| 1041 | |
| 1042 | return ok && v.score == score |
| 1043 | } |
| 1044 | |
| 1045 | // Bytes encodes the FZSet instance into bytes using MessagePack |
| 1046 | // binary serialization format. The encoded bytes can be used for |