├── .github └── workflows │ └── release-to-npm.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SEQ_README.md ├── package.json ├── rescript.json ├── src ├── Extras.res ├── Extras__Array.res ├── Extras__Array.resi ├── Extras__Cmp.gen.tsx ├── Extras__Cmp.res ├── Extras__CmpUtilities.res ├── Extras__Literal.res ├── Extras__Literal.resi ├── Extras__NonEmptyArray.res ├── Extras__NonEmptyArray.resi ├── Extras__Option.res ├── Extras__Option.resi ├── Extras__Pattern.res ├── Extras__Pattern.resi ├── Extras__Result.res ├── Extras__Result.resi ├── Extras__SeqSamples.res ├── Extras__Task.gen.tsx ├── Extras__Task.res ├── Extras__Task.resi ├── Extras__Test.gen.tsx ├── Extras__Test.res ├── Extras__Test.resi ├── Extras__Trampoline.res ├── Extras__Trampoline.resi ├── Extras__Union.res ├── Extras__Union.resi ├── Extras__Unknown.res └── Extras__Unknown.resi └── tests ├── Extras__ArrayTests.res ├── Extras__CmpTests.res ├── Extras__LiteralTests.res ├── Extras__NonEmptyArrayTests.res ├── Extras__OptionTests.res ├── Extras__PatternTests.res ├── Extras__ResultTests.res ├── Extras__TaskTest.res ├── Extras__TrampolineTests.res ├── Extras__UnionTests.res ├── Extras__UnknownTests.res └── TestSuite.res /.github/workflows/release-to-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/.github/workflows/release-to-npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | lib 4 | **/*.bs.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/README.md -------------------------------------------------------------------------------- /SEQ_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/SEQ_README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/package.json -------------------------------------------------------------------------------- /rescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/rescript.json -------------------------------------------------------------------------------- /src/Extras.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras.res -------------------------------------------------------------------------------- /src/Extras__Array.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Array.res -------------------------------------------------------------------------------- /src/Extras__Array.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Array.resi -------------------------------------------------------------------------------- /src/Extras__Cmp.gen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Cmp.gen.tsx -------------------------------------------------------------------------------- /src/Extras__Cmp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Cmp.res -------------------------------------------------------------------------------- /src/Extras__CmpUtilities.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__CmpUtilities.res -------------------------------------------------------------------------------- /src/Extras__Literal.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Literal.res -------------------------------------------------------------------------------- /src/Extras__Literal.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Literal.resi -------------------------------------------------------------------------------- /src/Extras__NonEmptyArray.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__NonEmptyArray.res -------------------------------------------------------------------------------- /src/Extras__NonEmptyArray.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__NonEmptyArray.resi -------------------------------------------------------------------------------- /src/Extras__Option.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Option.res -------------------------------------------------------------------------------- /src/Extras__Option.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Option.resi -------------------------------------------------------------------------------- /src/Extras__Pattern.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Pattern.res -------------------------------------------------------------------------------- /src/Extras__Pattern.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Pattern.resi -------------------------------------------------------------------------------- /src/Extras__Result.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Result.res -------------------------------------------------------------------------------- /src/Extras__Result.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Result.resi -------------------------------------------------------------------------------- /src/Extras__SeqSamples.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__SeqSamples.res -------------------------------------------------------------------------------- /src/Extras__Task.gen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Task.gen.tsx -------------------------------------------------------------------------------- /src/Extras__Task.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Task.res -------------------------------------------------------------------------------- /src/Extras__Task.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Task.resi -------------------------------------------------------------------------------- /src/Extras__Test.gen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Test.gen.tsx -------------------------------------------------------------------------------- /src/Extras__Test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Test.res -------------------------------------------------------------------------------- /src/Extras__Test.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Test.resi -------------------------------------------------------------------------------- /src/Extras__Trampoline.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Trampoline.res -------------------------------------------------------------------------------- /src/Extras__Trampoline.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Trampoline.resi -------------------------------------------------------------------------------- /src/Extras__Union.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Union.res -------------------------------------------------------------------------------- /src/Extras__Union.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Union.resi -------------------------------------------------------------------------------- /src/Extras__Unknown.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Unknown.res -------------------------------------------------------------------------------- /src/Extras__Unknown.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/src/Extras__Unknown.resi -------------------------------------------------------------------------------- /tests/Extras__ArrayTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__ArrayTests.res -------------------------------------------------------------------------------- /tests/Extras__CmpTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__CmpTests.res -------------------------------------------------------------------------------- /tests/Extras__LiteralTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__LiteralTests.res -------------------------------------------------------------------------------- /tests/Extras__NonEmptyArrayTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__NonEmptyArrayTests.res -------------------------------------------------------------------------------- /tests/Extras__OptionTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__OptionTests.res -------------------------------------------------------------------------------- /tests/Extras__PatternTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__PatternTests.res -------------------------------------------------------------------------------- /tests/Extras__ResultTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__ResultTests.res -------------------------------------------------------------------------------- /tests/Extras__TaskTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__TaskTest.res -------------------------------------------------------------------------------- /tests/Extras__TrampolineTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__TrampolineTests.res -------------------------------------------------------------------------------- /tests/Extras__UnionTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__UnionTests.res -------------------------------------------------------------------------------- /tests/Extras__UnknownTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/Extras__UnknownTests.res -------------------------------------------------------------------------------- /tests/TestSuite.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmagaram/rescript-extras/HEAD/tests/TestSuite.res --------------------------------------------------------------------------------