PromiseK

3.1.1

A simple Promise library for Swift
koher/PromiseK

What's New

Xcode 10 and macOS / tvOS / watchOS

2018-09-25T17:23:09Z
  • Xcode 10 / Swift 4.2
  • Supports macOS, tvOS and watchOS

#6

PromiseK

PromiseK provides a simple monadic Promise type for Swift.

// `flatMap` is equivalent to `then` of JavaScript's `Promise`
let a: Promise<Int> = asyncGet(2)
let b: Promise<Int> = asyncGet(3).map { $0 * $0 } // Promise(9)
let sum: Promise<Int> = a.flatMap { a in b.map { b in a + b } }

Promise can collaborate with throws for failable asynchronous operations.

// Collaborates with `throws` for error handling
let a: Promise<() throws -> Int> = asyncFailable(2)
let b: Promise<() throws -> Int> = asyncFailable(3).map { try $0() * $0() }
let sum: Promise<() throws -> Int> = a.flatMap { a in b.map { b in try a() * b() } }

It is also possible to recover from errors.

// Recovery from errors
let recovered: Promise<Int> = asyncFailable(42).map { value in
    do {
        return try value()
    } catch _ {
        return -1
    }
}

Installation

Swift Package Manager

.package(
    url: "https://github.com/koher/PromiseK.git",
    from: "3.0.0"
)
github "koher/PromiseK" ~> 3.0.0

License

The MIT License

References

  1. Promise - JavaScript | MDN
  2. JavaScript Promises: There and back again - HTML5 Rocks
  3. A Fistful of Monads - Learn You a Haskell for Great Good!

Description

  • Swift Tools 4.2.0
View More Packages from this Author

Dependencies

  • None
Last updated: Fri Apr 05 2024 06:52:49 GMT-0900 (Hawaii-Aleutian Daylight Time)