MCPcopy
hub / github.com/redis/go-redis / BitOpNot

Method BitOpNot

bitmap_commands.go:101–103  ·  view source on GitHub ↗

BitOpNot creates a new bitmap in which users are not members of a given bitmap

(ctx context.Context, destKey string, key string)

Source from the content-addressed store, hash-verified

99
100// BitOpNot creates a new bitmap in which users are not members of a given bitmap
101func (c cmdable) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd {
102 return c.bitOp(ctx, "not", destKey, key)
103}
104
105// BitOpDiff creates a new bitmap in which users are members of bitmap X but not of any of bitmaps Y1, Y2, …
106// Introduced with Redis 8.2

Callers

nothing calls this directly

Calls 1

bitOpMethod · 0.95

Tested by

no test coverage detected