Jason Lee 0bb32e0440 -- commit 10 년 전
..
Result 0bb32e0440 -- commit 10 년 전
Result.xcodeproj 0bb32e0440 -- commit 10 년 전
ResultTests 0bb32e0440 -- commit 10 년 전
.gitignore 0bb32e0440 -- commit 10 년 전
LICENSE 0bb32e0440 -- commit 10 년 전
README.md 0bb32e0440 -- commit 10 년 전

README.md

Result

Carthage compatible CocoaPods

This is a Swift µframework providing Result<Value, Error>.

Result<Value, Error> values are either successful (wrapping Value) or failed (wrapping Error). This is similar to Swift’s native Optional type, with the addition of an error value to pass some error code, message, or object along to be logged or displayed to the user.

Use

API documentation is in the source.

Integration

  1. Add this repository as a submodule and/or add it to your Cartfile if you’re using carthage to manage your dependencies.
  2. Drag Result.xcodeproj into your project or workspace.
  3. Link your target against Result.framework.
  4. Application targets should ensure that the framework gets copied into their application bundle. (Framework targets should instead require the application linking them to include Result.)