module Redis::Commands::Sets
def smove(source, destination, member)
-
(Boolean)
-
Parameters:
-
member
(String
) -- member to move from `source` to `destination` -
destination
(String
) -- destination key -
source
(String
) -- source key
def smove(source, destination, member) send_command([:smove, source, destination, member], &Boolify) end