class Concurrent::Promise

def zip(*others)

Returns:
  • (Promise) -

Options Hash: (**opts)
  • :execute (Boolean) -- execute promise before returning
  • :executor (Executor) -- when set use the given `Executor` instance.

Parameters:
  • opts (Hash) -- the configuration options
  • others (Array) --
  • others (Array) --

Overloads:
  • zip(*promises, opts)
  • zip(*promises)
def zip(*others)
  self.class.zip(self, *others)
end