├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc.cjs ├── .github └── dependabot.yml ├── .gitignore ├── .huskyrc ├── .lintstagedrc ├── .npmignore ├── .nvmrc ├── .prettierrc.cjs ├── mocharc.json ├── package.json ├── pnpm-lock.yaml ├── readme.md ├── src ├── Array.test.ts ├── Array.ts ├── Branded.ts ├── Data.test.ts ├── Data.ts ├── DataEither.test.ts ├── DataEither.ts ├── Either.test.ts ├── Either.ts ├── Endomorphism.ts ├── HKT.ts ├── Id.ts ├── Json.ts ├── Law │ ├── Arbitrary.ts │ ├── Associative.ts │ ├── AssociativeBoth.ts │ ├── AssociativeEither.ts │ ├── AssociativeFlatten.ts │ ├── Commutative.ts │ ├── Contravariant.ts │ ├── Covariant.ts │ ├── Eq.ts │ ├── FilterMap.ts │ ├── ForEach.ts │ ├── Identity.ts │ ├── IdentityBoth.ts │ ├── IdentityEither.ts │ ├── IdentityFlatten.ts │ ├── Inverse.ts │ ├── Ord.ts │ ├── index.ts │ └── internal-test-all-laws.ts ├── Map.ts ├── Match.ts ├── Maybe.test.ts ├── Maybe.ts ├── NonEmptyArray.test.ts ├── NonEmptyArray.ts ├── Predicate.test.ts ├── Predicate.ts ├── Progress.test.ts ├── Progress.ts ├── Record.ts ├── Refinement.ts ├── RoseTree.ts ├── Set.test.ts ├── Set.ts ├── These.ts ├── Tree.ts ├── Tuple.ts ├── Typeclass │ ├── Associative.test.ts │ ├── Associative.ts │ ├── AssociativeBoth.ts │ ├── AssociativeCompose.ts │ ├── AssociativeEither.ts │ ├── AssociativeFlatten.ts │ ├── Bicovariant.ts │ ├── Bottom.ts │ ├── Bounded.ts │ ├── Commutative.ts │ ├── CommutativeBoth.ts │ ├── CommutativeEither.ts │ ├── Compact.ts │ ├── Compactable.ts │ ├── Concat.test.ts │ ├── Concat.ts │ ├── Contravariant.ts │ ├── Covariant.ts │ ├── CovariantWithIndex.ts │ ├── Debug.ts │ ├── Divariant.ts │ ├── Eq.test.ts │ ├── Eq.ts │ ├── FilterMap.ts │ ├── FilterMapWithIndex.ts │ ├── FoldMap.ts │ ├── FoldMapWithIndex.ts │ ├── ForEach │ │ ├── ForEach.test.ts │ │ ├── ForEach.ts │ │ ├── compacted.ts │ │ ├── composition.ts │ │ ├── foldMap.ts │ │ ├── index.ts │ │ ├── map.ts │ │ ├── mapAccum.ts │ │ ├── separated.ts │ │ └── sequence.ts │ ├── ForEachWithIndex.ts │ ├── Identity.test.ts │ ├── Identity.ts │ ├── IdentityBoth.ts │ ├── IdentityEither.ts │ ├── IdentityFlatten.ts │ ├── Invariant.ts │ ├── Inverse.test.ts │ ├── Inverse.ts │ ├── NaturalTransformation.ts │ ├── Ord.ts │ ├── PartitionMap.ts │ ├── PartitionMapWithIndex.ts │ ├── Reduce.ts │ ├── ReduceRight.ts │ ├── ReduceRightWithIndex.ts │ ├── ReduceWithIndex.ts │ ├── Separate.ts │ ├── Top.ts │ ├── Trivariant.ts │ └── index.ts ├── Unary.ts ├── boolean.test.ts ├── boolean.ts ├── common.ts ├── function.test.ts ├── function.ts ├── index.ts ├── logical.ts ├── number.test.ts ├── number.ts ├── string.test.ts ├── string.ts └── struct.ts ├── tools ├── common.ts ├── generatePackageExports.ts └── overloads │ ├── AST.ts │ ├── Context.ts │ ├── PrintManagerContext.ts │ ├── cli.ts │ ├── common.ts │ ├── definitions │ ├── AssociativeBoth.both.ts │ ├── AssociativeBoth.bothWith.ts │ ├── AssociativeBoth.ts │ ├── AssociativeBoth.tuple.ts │ ├── AssociativeBoth.zipLeft.ts │ ├── AssociativeBoth.zipRight.ts │ ├── AssociativeCompose.compose.ts │ ├── AssociativeCompose.ts │ ├── AssociativeEither.either.ts │ ├── AssociativeEither.eitherWith.ts │ ├── AssociativeEither.eventually.ts │ ├── AssociativeEither.orElse.ts │ ├── AssociativeEither.ts │ ├── AssociativeEither.tuple.ts │ ├── AssociativeFlatten.bind.ts │ ├── AssociativeFlatten.flatMap.ts │ ├── AssociativeFlatten.flatten.ts │ ├── AssociativeFlatten.makeAssociativeBoth.ts │ ├── AssociativeFlatten.ts │ ├── Bicovariant.bimap.ts │ ├── Bicovariant.map.ts │ ├── Bicovariant.mapLeft.ts │ ├── Bicovariant.ts │ ├── Bottom.bottom.ts │ ├── Bottom.ts │ ├── CommutativeBoth.ts │ ├── CommutativeEither.ts │ ├── Compact.compact.ts │ ├── Compact.ts │ ├── Compactable.ts │ ├── Contravariant.contramap.ts │ ├── Contravariant.contramapC.ts │ ├── Contravariant.ts │ ├── Covariant.bindTo.ts │ ├── Covariant.flap.ts │ ├── Covariant.map.ts │ ├── Covariant.mapTo.ts │ ├── Covariant.ts │ ├── Covariant.tupled.ts │ ├── CovariantWithIndex.map.ts │ ├── CovariantWithIndex.ts │ ├── Divariant.contramap.ts │ ├── Divariant.dimap.ts │ ├── Divariant.map.ts │ ├── Divariant.ts │ ├── FilterMap.compact.ts │ ├── FilterMap.filter.ts │ ├── FilterMap.filterMap.ts │ ├── FilterMap.map.ts │ ├── FilterMap.ts │ ├── FilterMapWithIndex.filterMap.ts │ ├── FilterMapWithIndex.ts │ ├── FoldMap.addIndex.ts │ ├── FoldMap.contains.ts │ ├── FoldMap.count.ts │ ├── FoldMap.every.ts │ ├── FoldMap.exists.ts │ ├── FoldMap.find.ts │ ├── FoldMap.foldLeft.ts │ ├── FoldMap.foldMap.ts │ ├── FoldMap.groupBy.ts │ ├── FoldMap.intercalate.ts │ ├── FoldMap.isEmpty.ts │ ├── FoldMap.isNonEmpty.ts │ ├── FoldMap.partitionMap.ts │ ├── FoldMap.reduce.ts │ ├── FoldMap.reduceAssociative.ts │ ├── FoldMap.reduceCommutative.ts │ ├── FoldMap.reduceIdentity.ts │ ├── FoldMap.reduceRight.ts │ ├── FoldMap.reverse.ts │ ├── FoldMap.size.ts │ ├── FoldMap.some.ts │ ├── FoldMap.toArray.ts │ ├── FoldMap.ts │ ├── FoldMapWithIndex.foldMap.ts │ ├── FoldMapWithIndex.toMap.ts │ ├── FoldMapWithIndex.ts │ ├── ForEach.compacted.ts │ ├── ForEach.foldMap.ts │ ├── ForEach.forEach.ts │ ├── ForEach.map.ts │ ├── ForEach.mapAccum.ts │ ├── ForEach.separated.ts │ ├── ForEach.sequence.ts │ ├── ForEach.ts │ ├── ForEachWithIndex.forEach.ts │ ├── ForEachWithIndex.ts │ ├── Identity.fromIdentityEitherCovariant.ts │ ├── Identity.ts │ ├── IdentityBoth.struct.ts │ ├── IdentityBoth.ts │ ├── IdentityBoth.tuple.ts │ ├── IdentityEither.ts │ ├── IdentityFlatten.ts │ ├── Invariant.imap.ts │ ├── Invariant.ts │ ├── Law │ │ ├── testAllHKTLaws.ts │ │ ├── testContravariant.ts │ │ ├── testCovariant.ts │ │ ├── testCovariantAssociativeEither.ts │ │ ├── testCovariantAssociativeFlatten.ts │ │ ├── testCovariantIdentityBoth.ts │ │ ├── testCovariantIdentityEither.ts │ │ ├── testCovariantIdentityFlatten.ts │ │ └── testFilterMap.ts │ ├── NaturalTransformation.ts │ ├── PartitionMap.separate.ts │ ├── PartitionMap.ts │ ├── PartitionMapWithIndex.partitionMap.ts │ ├── PartitionMapWithIndex.ts │ ├── Reduce.reduce.ts │ ├── Reduce.ts │ ├── ReduceRight.reduceRight.ts │ ├── ReduceRight.ts │ ├── ReduceRightWithIndex.reduceRight.ts │ ├── ReduceRightWithIndex.ts │ ├── ReduceWithIndex.reduce.ts │ ├── ReduceWithIndex.ts │ ├── Separate.ts │ ├── Top.makeFromLazy.ts │ ├── Top.makeFromValue.ts │ ├── Top.top.ts │ ├── Top.ts │ ├── Trivariant.bimap.ts │ ├── Trivariant.contramap.ts │ ├── Trivariant.map.ts │ ├── Trivariant.ts │ └── common.ts │ ├── findHKTParams.ts │ ├── generateOverloads.ts │ ├── printOverload.ts │ ├── tsconfig.json │ └── walkAst.ts ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.json └── vite.config.ts /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.huskyrc -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/gallium 2 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/mocharc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/readme.md -------------------------------------------------------------------------------- /src/Array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Array.test.ts -------------------------------------------------------------------------------- /src/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Array.ts -------------------------------------------------------------------------------- /src/Branded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Branded.ts -------------------------------------------------------------------------------- /src/Data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Data.test.ts -------------------------------------------------------------------------------- /src/Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Data.ts -------------------------------------------------------------------------------- /src/DataEither.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/DataEither.test.ts -------------------------------------------------------------------------------- /src/DataEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/DataEither.ts -------------------------------------------------------------------------------- /src/Either.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Either.test.ts -------------------------------------------------------------------------------- /src/Either.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Either.ts -------------------------------------------------------------------------------- /src/Endomorphism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Endomorphism.ts -------------------------------------------------------------------------------- /src/HKT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/HKT.ts -------------------------------------------------------------------------------- /src/Id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Id.ts -------------------------------------------------------------------------------- /src/Json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Json.ts -------------------------------------------------------------------------------- /src/Law/Arbitrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Arbitrary.ts -------------------------------------------------------------------------------- /src/Law/Associative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Associative.ts -------------------------------------------------------------------------------- /src/Law/AssociativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/AssociativeBoth.ts -------------------------------------------------------------------------------- /src/Law/AssociativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/AssociativeEither.ts -------------------------------------------------------------------------------- /src/Law/AssociativeFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/AssociativeFlatten.ts -------------------------------------------------------------------------------- /src/Law/Commutative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Commutative.ts -------------------------------------------------------------------------------- /src/Law/Contravariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Contravariant.ts -------------------------------------------------------------------------------- /src/Law/Covariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Covariant.ts -------------------------------------------------------------------------------- /src/Law/Eq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Eq.ts -------------------------------------------------------------------------------- /src/Law/FilterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/FilterMap.ts -------------------------------------------------------------------------------- /src/Law/ForEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/ForEach.ts -------------------------------------------------------------------------------- /src/Law/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Identity.ts -------------------------------------------------------------------------------- /src/Law/IdentityBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/IdentityBoth.ts -------------------------------------------------------------------------------- /src/Law/IdentityEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/IdentityEither.ts -------------------------------------------------------------------------------- /src/Law/IdentityFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/IdentityFlatten.ts -------------------------------------------------------------------------------- /src/Law/Inverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Inverse.ts -------------------------------------------------------------------------------- /src/Law/Ord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/Ord.ts -------------------------------------------------------------------------------- /src/Law/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/index.ts -------------------------------------------------------------------------------- /src/Law/internal-test-all-laws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Law/internal-test-all-laws.ts -------------------------------------------------------------------------------- /src/Map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Map.ts -------------------------------------------------------------------------------- /src/Match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Match.ts -------------------------------------------------------------------------------- /src/Maybe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Maybe.test.ts -------------------------------------------------------------------------------- /src/Maybe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Maybe.ts -------------------------------------------------------------------------------- /src/NonEmptyArray.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/NonEmptyArray.test.ts -------------------------------------------------------------------------------- /src/NonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/NonEmptyArray.ts -------------------------------------------------------------------------------- /src/Predicate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Predicate.test.ts -------------------------------------------------------------------------------- /src/Predicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Predicate.ts -------------------------------------------------------------------------------- /src/Progress.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Progress.test.ts -------------------------------------------------------------------------------- /src/Progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Progress.ts -------------------------------------------------------------------------------- /src/Record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Record.ts -------------------------------------------------------------------------------- /src/Refinement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Refinement.ts -------------------------------------------------------------------------------- /src/RoseTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/RoseTree.ts -------------------------------------------------------------------------------- /src/Set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Set.test.ts -------------------------------------------------------------------------------- /src/Set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Set.ts -------------------------------------------------------------------------------- /src/These.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/These.ts -------------------------------------------------------------------------------- /src/Tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Tree.ts -------------------------------------------------------------------------------- /src/Tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Tuple.ts -------------------------------------------------------------------------------- /src/Typeclass/Associative.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Associative.test.ts -------------------------------------------------------------------------------- /src/Typeclass/Associative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Associative.ts -------------------------------------------------------------------------------- /src/Typeclass/AssociativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/AssociativeBoth.ts -------------------------------------------------------------------------------- /src/Typeclass/AssociativeCompose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/AssociativeCompose.ts -------------------------------------------------------------------------------- /src/Typeclass/AssociativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/AssociativeEither.ts -------------------------------------------------------------------------------- /src/Typeclass/AssociativeFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/AssociativeFlatten.ts -------------------------------------------------------------------------------- /src/Typeclass/Bicovariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Bicovariant.ts -------------------------------------------------------------------------------- /src/Typeclass/Bottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Bottom.ts -------------------------------------------------------------------------------- /src/Typeclass/Bounded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Bounded.ts -------------------------------------------------------------------------------- /src/Typeclass/Commutative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Commutative.ts -------------------------------------------------------------------------------- /src/Typeclass/CommutativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/CommutativeBoth.ts -------------------------------------------------------------------------------- /src/Typeclass/CommutativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/CommutativeEither.ts -------------------------------------------------------------------------------- /src/Typeclass/Compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Compact.ts -------------------------------------------------------------------------------- /src/Typeclass/Compactable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Compactable.ts -------------------------------------------------------------------------------- /src/Typeclass/Concat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Concat.test.ts -------------------------------------------------------------------------------- /src/Typeclass/Concat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Concat.ts -------------------------------------------------------------------------------- /src/Typeclass/Contravariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Contravariant.ts -------------------------------------------------------------------------------- /src/Typeclass/Covariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Covariant.ts -------------------------------------------------------------------------------- /src/Typeclass/CovariantWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/CovariantWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/Debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Debug.ts -------------------------------------------------------------------------------- /src/Typeclass/Divariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Divariant.ts -------------------------------------------------------------------------------- /src/Typeclass/Eq.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Eq.test.ts -------------------------------------------------------------------------------- /src/Typeclass/Eq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Eq.ts -------------------------------------------------------------------------------- /src/Typeclass/FilterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/FilterMap.ts -------------------------------------------------------------------------------- /src/Typeclass/FilterMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/FilterMapWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/FoldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/FoldMap.ts -------------------------------------------------------------------------------- /src/Typeclass/FoldMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/FoldMapWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/ForEach.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/ForEach.test.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/ForEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/ForEach.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/compacted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/compacted.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/composition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/composition.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/foldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/foldMap.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/index.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/map.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/mapAccum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/mapAccum.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/separated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/separated.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEach/sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEach/sequence.ts -------------------------------------------------------------------------------- /src/Typeclass/ForEachWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ForEachWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/Identity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Identity.test.ts -------------------------------------------------------------------------------- /src/Typeclass/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Identity.ts -------------------------------------------------------------------------------- /src/Typeclass/IdentityBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/IdentityBoth.ts -------------------------------------------------------------------------------- /src/Typeclass/IdentityEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/IdentityEither.ts -------------------------------------------------------------------------------- /src/Typeclass/IdentityFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/IdentityFlatten.ts -------------------------------------------------------------------------------- /src/Typeclass/Invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Invariant.ts -------------------------------------------------------------------------------- /src/Typeclass/Inverse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Inverse.test.ts -------------------------------------------------------------------------------- /src/Typeclass/Inverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Inverse.ts -------------------------------------------------------------------------------- /src/Typeclass/NaturalTransformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/NaturalTransformation.ts -------------------------------------------------------------------------------- /src/Typeclass/Ord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Ord.ts -------------------------------------------------------------------------------- /src/Typeclass/PartitionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/PartitionMap.ts -------------------------------------------------------------------------------- /src/Typeclass/PartitionMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/PartitionMapWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/Reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Reduce.ts -------------------------------------------------------------------------------- /src/Typeclass/ReduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ReduceRight.ts -------------------------------------------------------------------------------- /src/Typeclass/ReduceRightWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ReduceRightWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/ReduceWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/ReduceWithIndex.ts -------------------------------------------------------------------------------- /src/Typeclass/Separate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Separate.ts -------------------------------------------------------------------------------- /src/Typeclass/Top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Top.ts -------------------------------------------------------------------------------- /src/Typeclass/Trivariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/Trivariant.ts -------------------------------------------------------------------------------- /src/Typeclass/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Typeclass/index.ts -------------------------------------------------------------------------------- /src/Unary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/Unary.ts -------------------------------------------------------------------------------- /src/boolean.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/boolean.test.ts -------------------------------------------------------------------------------- /src/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/boolean.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/function.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/function.test.ts -------------------------------------------------------------------------------- /src/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/function.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/logical.ts -------------------------------------------------------------------------------- /src/number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/number.test.ts -------------------------------------------------------------------------------- /src/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/number.ts -------------------------------------------------------------------------------- /src/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/string.test.ts -------------------------------------------------------------------------------- /src/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/string.ts -------------------------------------------------------------------------------- /src/struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/src/struct.ts -------------------------------------------------------------------------------- /tools/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/common.ts -------------------------------------------------------------------------------- /tools/generatePackageExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/generatePackageExports.ts -------------------------------------------------------------------------------- /tools/overloads/AST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/AST.ts -------------------------------------------------------------------------------- /tools/overloads/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/Context.ts -------------------------------------------------------------------------------- /tools/overloads/PrintManagerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/PrintManagerContext.ts -------------------------------------------------------------------------------- /tools/overloads/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/cli.ts -------------------------------------------------------------------------------- /tools/overloads/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/common.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.both.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.both.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.bothWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.bothWith.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.tuple.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.zipLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.zipLeft.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeBoth.zipRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeBoth.zipRight.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeCompose.compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeCompose.compose.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeCompose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeCompose.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.either.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.either.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.eitherWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.eitherWith.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.eventually.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.eventually.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.orElse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.orElse.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeEither.tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeEither.tuple.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeFlatten.bind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeFlatten.bind.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeFlatten.flatMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeFlatten.flatMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeFlatten.flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeFlatten.flatten.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeFlatten.makeAssociativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeFlatten.makeAssociativeBoth.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/AssociativeFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/AssociativeFlatten.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bicovariant.bimap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bicovariant.bimap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bicovariant.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bicovariant.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bicovariant.mapLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bicovariant.mapLeft.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bicovariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bicovariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bottom.bottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bottom.bottom.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Bottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Bottom.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/CommutativeBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/CommutativeBoth.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/CommutativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/CommutativeEither.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Compact.compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Compact.compact.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Compact.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Compactable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Compactable.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Contravariant.contramap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Contravariant.contramap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Contravariant.contramapC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Contravariant.contramapC.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Contravariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Contravariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.bindTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.bindTo.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.flap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.flap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.mapTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.mapTo.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Covariant.tupled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Covariant.tupled.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/CovariantWithIndex.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/CovariantWithIndex.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/CovariantWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/CovariantWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Divariant.contramap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Divariant.contramap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Divariant.dimap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Divariant.dimap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Divariant.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Divariant.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Divariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Divariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMap.compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMap.compact.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMap.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMap.filter.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMap.filterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMap.filterMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMap.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMap.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMapWithIndex.filterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMapWithIndex.filterMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FilterMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FilterMapWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.addIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.addIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.contains.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.count.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.every.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.every.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.exists.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.find.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.foldLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.foldLeft.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.foldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.foldMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.groupBy.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.intercalate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.intercalate.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.isEmpty.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.isNonEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.isNonEmpty.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.partitionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.partitionMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reduce.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reduceAssociative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reduceAssociative.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reduceCommutative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reduceCommutative.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reduceIdentity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reduceIdentity.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reduceRight.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.reverse.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.size.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.some.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.some.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.toArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.toArray.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMapWithIndex.foldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMapWithIndex.foldMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMapWithIndex.toMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMapWithIndex.toMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/FoldMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/FoldMapWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.compacted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.compacted.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.foldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.foldMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.forEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.forEach.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.mapAccum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.mapAccum.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.separated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.separated.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.sequence.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEach.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEachWithIndex.forEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEachWithIndex.forEach.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ForEachWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ForEachWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Identity.fromIdentityEitherCovariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Identity.fromIdentityEitherCovariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Identity.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/IdentityBoth.struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/IdentityBoth.struct.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/IdentityBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/IdentityBoth.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/IdentityBoth.tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/IdentityBoth.tuple.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/IdentityEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/IdentityEither.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/IdentityFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/IdentityFlatten.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Invariant.imap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Invariant.imap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Invariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testAllHKTLaws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testAllHKTLaws.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testContravariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testContravariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariantAssociativeEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariantAssociativeEither.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariantAssociativeFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariantAssociativeFlatten.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariantIdentityBoth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariantIdentityBoth.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariantIdentityEither.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariantIdentityEither.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testCovariantIdentityFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testCovariantIdentityFlatten.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Law/testFilterMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Law/testFilterMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/NaturalTransformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/NaturalTransformation.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/PartitionMap.separate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/PartitionMap.separate.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/PartitionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/PartitionMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/PartitionMapWithIndex.partitionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/PartitionMapWithIndex.partitionMap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/PartitionMapWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/PartitionMapWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Reduce.reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Reduce.reduce.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Reduce.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceRight.reduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceRight.reduceRight.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceRight.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceRightWithIndex.reduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceRightWithIndex.reduceRight.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceRightWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceRightWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceWithIndex.reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceWithIndex.reduce.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/ReduceWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/ReduceWithIndex.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Separate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Separate.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Top.makeFromLazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Top.makeFromLazy.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Top.makeFromValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Top.makeFromValue.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Top.top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Top.top.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Top.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Trivariant.bimap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Trivariant.bimap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Trivariant.contramap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Trivariant.contramap.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Trivariant.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Trivariant.map.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/Trivariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/Trivariant.ts -------------------------------------------------------------------------------- /tools/overloads/definitions/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/definitions/common.ts -------------------------------------------------------------------------------- /tools/overloads/findHKTParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/findHKTParams.ts -------------------------------------------------------------------------------- /tools/overloads/generateOverloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/generateOverloads.ts -------------------------------------------------------------------------------- /tools/overloads/printOverload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/printOverload.ts -------------------------------------------------------------------------------- /tools/overloads/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/tsconfig.json -------------------------------------------------------------------------------- /tools/overloads/walkAst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tools/overloads/walkAst.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylorS/hkt-ts/HEAD/vite.config.ts --------------------------------------------------------------------------------