Functions

The following functions are available globally.

  • Wait until the given Future has completed and extract its value.

    See more

    Declaration

    Swift

    public prefix func !><Wrapped> (input: Future<Wrapped>) -> Wrapped
  • Wait until the given ThrowingFuture has completed and extract its value. May throw errors, so use with try.

    See more

    Declaration

    Swift

    public prefix func !><Wrapped> (input: ThrowingFuture<Wrapped>) throws -> Wrapped