smismember(
name: KeyT,
values: List,
*args: List
) → Union[
SMISMEMBER(
key: RedisArgument,
members: Array<RedisArgument>
) → Any
smismember(
key: byte[],
members: byte[]...
) → List<Boolean> // List representing the membership of the given elements, in the same order as they are requested
smismember(
key: String,
members: String...
) → List<Boolean> // List representing the membership of the given elements, in the same order as they are requested
smismember(
key: K, // the key.
members: V... // the member type: value.
) → List<Boolean> // List<Boolean> array-reply list representing the membership of the given elements, in the same order as they are requested. @since 6.1
smismember(
key: K, // the key.
members: V... // the member type: value.
) → RedisFuture<List<Boolean>> // List<Boolean> array-reply list representing the membership of the given elements, in the same order as they are requested. @since 6.1
smismember(
key: K, // the key.
members: V... // the member type: value.
) → Flux<Boolean> // Boolean array-reply list representing the membership of the given elements, in the same order as they are requested. @since 6.1
SMIsMember(
ctx: context.Context,
key: string,
members: ...interface{}
) → *BoolSliceCmd
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
smismember(
$key: string,
$members: string ...
) → array
smismember(
key: K,
members: M
) → (Vec<bool>)
smismember(
key: K,
members: M
) → (Vec<bool>)