module Redis::Commands::Sets

def sunion(*keys)

Returns:
  • (Array) - members in the union

Parameters:
  • keys (String, Array) -- keys pointing to sets to unify
def sunion(*keys)
  keys.flatten!(1)
  send_command([:sunion].concat(keys))
end