├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── packages.dhall ├── spago.dhall ├── src └── Data │ └── RRBList │ ├── Internal │ ├── Types.js │ └── Types.purs │ ├── List.js │ └── List.purs ├── test.dhall ├── test └── Test.purs └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/packages.dhall -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Data/RRBList/Internal/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/src/Data/RRBList/Internal/Types.js -------------------------------------------------------------------------------- /src/Data/RRBList/Internal/Types.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/src/Data/RRBList/Internal/Types.purs -------------------------------------------------------------------------------- /src/Data/RRBList/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/src/Data/RRBList/List.js -------------------------------------------------------------------------------- /src/Data/RRBList/List.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/src/Data/RRBList/List.purs -------------------------------------------------------------------------------- /test.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/test.dhall -------------------------------------------------------------------------------- /test/Test.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/test/Test.purs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkia/purescript-rrb-list/HEAD/yarn.lock --------------------------------------------------------------------------------