BowResult 0.3.0

BowResult 0.3.0

Maintained by TomásRuizLópez, Miguel Ángel Díaz, juancazalla.



 
Depends on:
Result~> 4.0.0
Bow~> 0.3.0
 

BowResult 0.3.0

  • By
  • The Bow authors

Build Status codecov Gitter

Bow is a library for Typed Functional Programming in Swift.

Modules

Bow is split in multiple modules that can be consumed independently. These modules are:

  • Bow: core library. Contains Higher Kinded Types emulation, function manipulation utilities, Typeclasses, Data Types, Monad Transformers and instances for primitive types.
  • BowOptics: module to work with different optics.
  • BowRecursionSchemes: module to work with recursion schemes.
  • BowFree: module to work with Free Monads.
  • BowGeneric: module to work with generic data types.
  • BowEffects: module to work with effects.
  • BowResult: module to provide an integration with Result.
  • BowBrightFutures: module to provide an integration with BrightFutures.
  • BowRx: module to provide an integration with RxSwift.

Bow is available using CocoaPods, Carthage and Swift Package Manager.

CocoaPods

You can consume each Bow module as a separate pod. You can add these lines to your Podfile at your convenience:

pod "Bow", "~> 0.2.0"
pod "BowOptics", "~> 0.2.0"
pod "BowRecursionSchemes", "~> 0.2.0"
pod "BowFree", "~> 0.2.0"
pod "BowGeneric", "~> 0.2.0"
pod "BowResult", "~> 0.2.0"
pod "BowEffects", "~> 0.2.0"
pod "BowRx", "~> 0.2.0"
pod "BowBrightFutures", "~> 0.2.0"

Carthage

Carthage will download the whole Bow project, but it will compile individual frameworks for each module that you can use separately. Add this line to your Cartfile:

github "bow-swift/Bow" ~> 0.2.0

Swift Package Manager

Create a Package.swift file similar to the next one and use the dependencies at your convenience.

// swift-tools-version:4.0

import PackageDescription

let package = Package(
    name: "BowTestProject",
    dependencies: [
        .package(url: "https://github.com/bow-swift/bow.git", from: "0.2.0")
    ],
    targets: [
        .target(name: "BowTestProject",
                dependencies: [
                    "Bow",
                    "BowOptics",
                    "BowRecursionSchemes",
                    "BowFree",
                    "BowGeneric",
                    "BowEffects",
                    "BowResult",
                    "BowRx",
                    "BowBrightFutures"]
        )
    ]
)

To build it, just run:

$ swift build

Contributing

If you want to contribute to this library, you can check the Issues to see some of the pending task.

How to run the project

If you don't have carthage, install it first:

brew install carthage

After this, grab all the project dependencies running:

carthage bootstrap

Now, you can open Bow.xcodeproj with Xcode and run the test to see that everything is working.

License

Copyright (C) 2018 The Bow Authors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.