├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Documentation.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── index.md ├── modules │ ├── Align │ │ ├── Array.ts.md │ │ ├── Option.ts.md │ │ ├── Record.ts.md │ │ └── index.ts.md │ ├── ArrayOption.ts.md │ ├── Do.ts.md │ ├── Free.ts.md │ ├── IOOption.ts.md │ ├── List.ts.md │ ├── ReaderIO.ts.md │ ├── ReaderTask.ts.md │ ├── ReaderTaskEither.ts.md │ ├── RegExp.ts.md │ ├── Semialign │ │ ├── NonEmptyArray.ts.md │ │ └── index.ts.md │ ├── StateEither.ts.md │ ├── StateIO.ts.md │ ├── StateTaskEither.ts.md │ ├── Task │ │ ├── getLine.ts.md │ │ └── withTimeout.ts.md │ ├── TaskOption.ts.md │ ├── Zipper.ts.md │ ├── batchTraverse.ts.md │ ├── collectUntil.ts.md │ ├── filterA.ts.md │ ├── index.md │ ├── index.ts.md │ └── time.ts.md └── recipes │ ├── AccumulateIOEither.md │ ├── index.md │ └── sequenceVSsequenceT.md ├── dtslint ├── index.d.ts └── ts3.5 │ ├── IOOption.ts │ ├── ReaderIO.ts │ ├── ReaderTask.ts │ ├── ReaderTaskEither.ts │ ├── index.d.ts │ ├── index.ts │ ├── tsconfig.json │ └── tslint.json ├── jest.config.js ├── package.json ├── perf └── Do.ts ├── scripts ├── FileSystem.ts ├── build.ts ├── pre-publish.ts ├── release.ts └── run.ts ├── src ├── Align │ ├── Array.ts │ ├── Option.ts │ ├── Record.ts │ └── index.ts ├── ArrayOption.ts ├── Do.ts ├── Free.ts ├── IOOption.ts ├── List.ts ├── ReaderIO.ts ├── ReaderTask.ts ├── ReaderTaskEither.ts ├── RegExp.ts ├── Semialign │ ├── NonEmptyArray.ts │ └── index.ts ├── StateEither.ts ├── StateIO.ts ├── StateTaskEither.ts ├── Task │ ├── getLine.ts │ └── withTimeout.ts ├── TaskOption.ts ├── Zipper.ts ├── batchTraverse.ts ├── collectUntil.ts ├── filterA.ts ├── index.ts └── time.ts ├── test ├── Align.ts ├── Do.ts ├── Free.ts ├── IOOption.ts ├── List.ts ├── ReaderIO.ts ├── ReaderTask.ts ├── ReaderTaskEither.ts ├── RegExp.ts ├── Semialign.ts ├── StateEither.ts ├── StateIO.ts ├── StateTaskEither.ts ├── Task │ └── withTimeout.ts ├── TaskOption.ts ├── Zipper.ts ├── batchTraverse.ts ├── collectUntil.ts ├── filterA.ts ├── time.ts └── tsconfig.json ├── tsconfig.build-es6.json ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.tslint.json └── tslint.json /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.github/ISSUE_TEMPLATE/Documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | dist 4 | dev 5 | coverage 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/modules/Align/Array.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Align/Array.ts.md -------------------------------------------------------------------------------- /docs/modules/Align/Option.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Align/Option.ts.md -------------------------------------------------------------------------------- /docs/modules/Align/Record.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Align/Record.ts.md -------------------------------------------------------------------------------- /docs/modules/Align/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Align/index.ts.md -------------------------------------------------------------------------------- /docs/modules/ArrayOption.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/ArrayOption.ts.md -------------------------------------------------------------------------------- /docs/modules/Do.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Do.ts.md -------------------------------------------------------------------------------- /docs/modules/Free.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Free.ts.md -------------------------------------------------------------------------------- /docs/modules/IOOption.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/IOOption.ts.md -------------------------------------------------------------------------------- /docs/modules/List.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/List.ts.md -------------------------------------------------------------------------------- /docs/modules/ReaderIO.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/ReaderIO.ts.md -------------------------------------------------------------------------------- /docs/modules/ReaderTask.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/ReaderTask.ts.md -------------------------------------------------------------------------------- /docs/modules/ReaderTaskEither.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/ReaderTaskEither.ts.md -------------------------------------------------------------------------------- /docs/modules/RegExp.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/RegExp.ts.md -------------------------------------------------------------------------------- /docs/modules/Semialign/NonEmptyArray.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Semialign/NonEmptyArray.ts.md -------------------------------------------------------------------------------- /docs/modules/Semialign/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Semialign/index.ts.md -------------------------------------------------------------------------------- /docs/modules/StateEither.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/StateEither.ts.md -------------------------------------------------------------------------------- /docs/modules/StateIO.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/StateIO.ts.md -------------------------------------------------------------------------------- /docs/modules/StateTaskEither.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/StateTaskEither.ts.md -------------------------------------------------------------------------------- /docs/modules/Task/getLine.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Task/getLine.ts.md -------------------------------------------------------------------------------- /docs/modules/Task/withTimeout.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Task/withTimeout.ts.md -------------------------------------------------------------------------------- /docs/modules/TaskOption.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/TaskOption.ts.md -------------------------------------------------------------------------------- /docs/modules/Zipper.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/Zipper.ts.md -------------------------------------------------------------------------------- /docs/modules/batchTraverse.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/batchTraverse.ts.md -------------------------------------------------------------------------------- /docs/modules/collectUntil.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/collectUntil.ts.md -------------------------------------------------------------------------------- /docs/modules/filterA.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/filterA.ts.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/index.ts.md -------------------------------------------------------------------------------- /docs/modules/time.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/modules/time.ts.md -------------------------------------------------------------------------------- /docs/recipes/AccumulateIOEither.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/recipes/AccumulateIOEither.md -------------------------------------------------------------------------------- /docs/recipes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/recipes/index.md -------------------------------------------------------------------------------- /docs/recipes/sequenceVSsequenceT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/docs/recipes/sequenceVSsequenceT.md -------------------------------------------------------------------------------- /dtslint/index.d.ts: -------------------------------------------------------------------------------- 1 | // TypeScript Version: 3.5 2 | -------------------------------------------------------------------------------- /dtslint/ts3.5/IOOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/IOOption.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/ReaderIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/ReaderIO.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/ReaderTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/ReaderTask.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/ReaderTaskEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/ReaderTaskEither.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtslint/ts3.5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/index.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/tsconfig.json -------------------------------------------------------------------------------- /dtslint/ts3.5/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/dtslint/ts3.5/tslint.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/package.json -------------------------------------------------------------------------------- /perf/Do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/perf/Do.ts -------------------------------------------------------------------------------- /scripts/FileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/scripts/FileSystem.ts -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/pre-publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/scripts/pre-publish.ts -------------------------------------------------------------------------------- /scripts/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/scripts/release.ts -------------------------------------------------------------------------------- /scripts/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/scripts/run.ts -------------------------------------------------------------------------------- /src/Align/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Align/Array.ts -------------------------------------------------------------------------------- /src/Align/Option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Align/Option.ts -------------------------------------------------------------------------------- /src/Align/Record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Align/Record.ts -------------------------------------------------------------------------------- /src/Align/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Align/index.ts -------------------------------------------------------------------------------- /src/ArrayOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/ArrayOption.ts -------------------------------------------------------------------------------- /src/Do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Do.ts -------------------------------------------------------------------------------- /src/Free.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Free.ts -------------------------------------------------------------------------------- /src/IOOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/IOOption.ts -------------------------------------------------------------------------------- /src/List.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/List.ts -------------------------------------------------------------------------------- /src/ReaderIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/ReaderIO.ts -------------------------------------------------------------------------------- /src/ReaderTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/ReaderTask.ts -------------------------------------------------------------------------------- /src/ReaderTaskEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/ReaderTaskEither.ts -------------------------------------------------------------------------------- /src/RegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/RegExp.ts -------------------------------------------------------------------------------- /src/Semialign/NonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Semialign/NonEmptyArray.ts -------------------------------------------------------------------------------- /src/Semialign/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Semialign/index.ts -------------------------------------------------------------------------------- /src/StateEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/StateEither.ts -------------------------------------------------------------------------------- /src/StateIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/StateIO.ts -------------------------------------------------------------------------------- /src/StateTaskEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/StateTaskEither.ts -------------------------------------------------------------------------------- /src/Task/getLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Task/getLine.ts -------------------------------------------------------------------------------- /src/Task/withTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Task/withTimeout.ts -------------------------------------------------------------------------------- /src/TaskOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/TaskOption.ts -------------------------------------------------------------------------------- /src/Zipper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/Zipper.ts -------------------------------------------------------------------------------- /src/batchTraverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/batchTraverse.ts -------------------------------------------------------------------------------- /src/collectUntil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/collectUntil.ts -------------------------------------------------------------------------------- /src/filterA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/filterA.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/src/time.ts -------------------------------------------------------------------------------- /test/Align.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Align.ts -------------------------------------------------------------------------------- /test/Do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Do.ts -------------------------------------------------------------------------------- /test/Free.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Free.ts -------------------------------------------------------------------------------- /test/IOOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/IOOption.ts -------------------------------------------------------------------------------- /test/List.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/List.ts -------------------------------------------------------------------------------- /test/ReaderIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/ReaderIO.ts -------------------------------------------------------------------------------- /test/ReaderTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/ReaderTask.ts -------------------------------------------------------------------------------- /test/ReaderTaskEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/ReaderTaskEither.ts -------------------------------------------------------------------------------- /test/RegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/RegExp.ts -------------------------------------------------------------------------------- /test/Semialign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Semialign.ts -------------------------------------------------------------------------------- /test/StateEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/StateEither.ts -------------------------------------------------------------------------------- /test/StateIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/StateIO.ts -------------------------------------------------------------------------------- /test/StateTaskEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/StateTaskEither.ts -------------------------------------------------------------------------------- /test/Task/withTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Task/withTimeout.ts -------------------------------------------------------------------------------- /test/TaskOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/TaskOption.ts -------------------------------------------------------------------------------- /test/Zipper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/Zipper.ts -------------------------------------------------------------------------------- /test/batchTraverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/batchTraverse.ts -------------------------------------------------------------------------------- /test/collectUntil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/collectUntil.ts -------------------------------------------------------------------------------- /test/filterA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/filterA.ts -------------------------------------------------------------------------------- /test/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/time.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.build-es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/tsconfig.build-es6.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/tsconfig.tslint.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/fp-ts-contrib/HEAD/tslint.json --------------------------------------------------------------------------------