├── .ghci ├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── benchmarks └── Benchmarks.hs ├── cabal.haskell-ci ├── hie.yaml ├── lifted-async.cabal ├── src └── Control │ └── Concurrent │ └── Async │ ├── Lifted.hs │ └── Lifted │ └── Safe.hs └── tests ├── RegressionTests.hs ├── Test └── Async │ ├── Common.hs │ ├── IO.hs │ ├── Reader.hs │ └── State.hs └── TestSuite.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/.ghci -------------------------------------------------------------------------------- /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /benchmarks/Benchmarks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/benchmarks/Benchmarks.hs -------------------------------------------------------------------------------- /cabal.haskell-ci: -------------------------------------------------------------------------------- 1 | branches: develop ghc* ci* 2 | -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/hie.yaml -------------------------------------------------------------------------------- /lifted-async.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/lifted-async.cabal -------------------------------------------------------------------------------- /src/Control/Concurrent/Async/Lifted.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/src/Control/Concurrent/Async/Lifted.hs -------------------------------------------------------------------------------- /src/Control/Concurrent/Async/Lifted/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/src/Control/Concurrent/Async/Lifted/Safe.hs -------------------------------------------------------------------------------- /tests/RegressionTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/RegressionTests.hs -------------------------------------------------------------------------------- /tests/Test/Async/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/Test/Async/Common.hs -------------------------------------------------------------------------------- /tests/Test/Async/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/Test/Async/IO.hs -------------------------------------------------------------------------------- /tests/Test/Async/Reader.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/Test/Async/Reader.hs -------------------------------------------------------------------------------- /tests/Test/Async/State.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/Test/Async/State.hs -------------------------------------------------------------------------------- /tests/TestSuite.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/lifted-async/HEAD/tests/TestSuite.hs --------------------------------------------------------------------------------