├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── generated-docs └── Data │ └── BigInt.md ├── package.json ├── packages.dhall ├── spago.dhall ├── src └── Data │ ├── BigInt.js │ └── BigInt.purs └── test └── Main.purs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/bower.json -------------------------------------------------------------------------------- /generated-docs/Data/BigInt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/generated-docs/Data/BigInt.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/packages.dhall -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Data/BigInt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/src/Data/BigInt.js -------------------------------------------------------------------------------- /src/Data/BigInt.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/src/Data/BigInt.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-bigints/HEAD/test/Main.purs --------------------------------------------------------------------------------