0.6.5 • Published 4 years ago

fp-ts-fluture v0.6.5

Weekly downloads
68
License
MIT
Repository
github
Last release
4 years ago

fp-ts bindings for Fluture

Documentation

Example

import { reject, of } from 'fluture'
import { future } from 'fp-ts-fluture/lib/Future'
import { array } from 'fp-ts/lib/Array'

array
  .sequence(future)([of(1), reject('ops')])
  .fork(() => console.error('error'), xs => console.log(xs)) // => "error"
array
  .sequence(future)([of(1), of(2)])
  .fork(() => console.error('error'), xs => console.log(xs)) // => [1, 2]
0.6.5

4 years ago

0.6.4

4 years ago

0.6.3

4 years ago

0.6.2

4 years ago

0.6.1

4 years ago

0.6.0

4 years ago

0.5.0

5 years ago

0.4.1

5 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago