├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── appveyor.yml ├── benchmarks └── Bench.hs ├── cabal.haskell-ci ├── cabal.project ├── shared └── TextShow │ └── TH │ └── Names.hs ├── src ├── TextShow.hs └── TextShow │ ├── Classes.hs │ ├── Control │ ├── Applicative.hs │ ├── Concurrent.hs │ ├── Exception.hs │ └── Monad │ │ └── ST.hs │ ├── Data │ ├── Array.hs │ ├── Array │ │ └── Byte.hs │ ├── Bool.hs │ ├── ByteString.hs │ ├── Char.hs │ ├── Complex.hs │ ├── Data.hs │ ├── Dynamic.hs │ ├── Either.hs │ ├── Fixed.hs │ ├── Floating.hs │ ├── Functor │ │ ├── Compose.hs │ │ ├── Identity.hs │ │ ├── Product.hs │ │ └── Sum.hs │ ├── Integral.hs │ ├── List.hs │ ├── List │ │ └── NonEmpty.hs │ ├── Maybe.hs │ ├── Monoid.hs │ ├── Ord.hs │ ├── Proxy.hs │ ├── Ratio.hs │ ├── Semigroup.hs │ ├── Text.hs │ ├── Tuple.hs │ ├── Type │ │ ├── Coercion.hs │ │ └── Equality.hs │ ├── Typeable.hs │ ├── Typeable │ │ └── Utils.hs │ ├── Version.hs │ └── Void.hs │ ├── Debug │ ├── Trace.hs │ └── Trace │ │ ├── Generic.hs │ │ └── TH.hs │ ├── Foreign │ ├── C │ │ └── Types.hs │ └── Ptr.hs │ ├── FromStringTextShow.hs │ ├── Functions.hs │ ├── GHC │ ├── Conc │ │ └── Windows.hs │ ├── Event.hs │ ├── Fingerprint.hs │ ├── Generics.hs │ ├── RTS │ │ └── Flags.hs │ ├── Stack.hs │ ├── StaticPtr.hs │ ├── Stats.hs │ └── TypeLits.hs │ ├── Generic.hs │ ├── Instances.hs │ ├── Numeric │ └── Natural.hs │ ├── Options.hs │ ├── System │ ├── Exit.hs │ ├── IO.hs │ └── Posix │ │ └── Types.hs │ ├── TH.hs │ ├── TH │ └── Internal.hs │ ├── Text │ └── Read.hs │ └── Utils.hs ├── tests ├── Derived │ ├── DataFamilies.hs │ ├── DatatypeContexts.hs │ ├── ExistentialQuantification.hs │ ├── Infix.hs │ ├── MagicHash.hs │ ├── PolyKinds.hs │ ├── RankNTypes.hs │ ├── Records.hs │ ├── TypeFamilies.hs │ └── TypeSynonyms.hs ├── Instances │ ├── Control │ │ ├── Concurrent.hs │ │ ├── Exception.hs │ │ └── Monad │ │ │ └── ST.hs │ ├── Data │ │ ├── Char.hs │ │ ├── Data.hs │ │ ├── Dynamic.hs │ │ ├── Floating.hs │ │ ├── Monoid.hs │ │ ├── Ord.hs │ │ ├── Semigroup.hs │ │ ├── Text.hs │ │ ├── Tuple.hs │ │ ├── Type │ │ │ ├── Coercion.hs │ │ │ └── Equality.hs │ │ └── Typeable.hs │ ├── Foreign │ │ ├── C │ │ │ └── Types.hs │ │ └── Ptr.hs │ ├── FromStringTextShow.hs │ ├── GHC │ │ ├── Conc │ │ │ └── Windows.hs │ │ ├── Event.hs │ │ ├── Fingerprint.hs │ │ ├── Generics.hs │ │ ├── RTS │ │ │ └── Flags.hs │ │ ├── Stack.hs │ │ ├── StaticPtr.hs │ │ ├── Stats.hs │ │ └── TypeLits.hs │ ├── Generic.hs │ ├── Options.hs │ ├── System │ │ ├── IO.hs │ │ └── Posix │ │ │ └── Types.hs │ ├── Text │ │ └── Read.hs │ ├── Utils.hs │ └── Utils │ │ └── GenericArbitrary.hs ├── Spec.hs └── Spec │ ├── BuilderSpec.hs │ ├── Control │ ├── ApplicativeSpec.hs │ ├── ConcurrentSpec.hs │ ├── ExceptionSpec.hs │ └── Monad │ │ └── STSpec.hs │ ├── Data │ ├── Array │ │ └── ByteSpec.hs │ ├── ArraySpec.hs │ ├── BoolSpec.hs │ ├── ByteStringSpec.hs │ ├── CharSpec.hs │ ├── ComplexSpec.hs │ ├── DataSpec.hs │ ├── DynamicSpec.hs │ ├── EitherSpec.hs │ ├── FixedSpec.hs │ ├── FloatingSpec.hs │ ├── Functor │ │ ├── ComposeSpec.hs │ │ ├── IdentitySpec.hs │ │ ├── ProductSpec.hs │ │ └── SumSpec.hs │ ├── IntegralSpec.hs │ ├── List │ │ └── NonEmptySpec.hs │ ├── ListSpec.hs │ ├── MaybeSpec.hs │ ├── MonoidSpec.hs │ ├── OrdSpec.hs │ ├── ProxySpec.hs │ ├── RatioSpec.hs │ ├── SemigroupSpec.hs │ ├── TextSpec.hs │ ├── TupleSpec.hs │ ├── Type │ │ ├── CoercionSpec.hs │ │ └── EqualitySpec.hs │ ├── TypeableSpec.hs │ └── VersionSpec.hs │ ├── Derived │ ├── DataFamiliesSpec.hs │ ├── DatatypeContextsSpec.hs │ ├── ExistentialQuantificationSpec.hs │ ├── InfixSpec.hs │ ├── MagicHashSpec.hs │ ├── PolyKindsSpec.hs │ ├── RankNTypesSpec.hs │ ├── RecordsSpec.hs │ ├── TypeFamiliesSpec.hs │ └── TypeSynonymsSpec.hs │ ├── Foreign │ ├── C │ │ └── TypesSpec.hs │ └── PtrSpec.hs │ ├── FromStringTextShowSpec.hs │ ├── FunctionsSpec.hs │ ├── GHC │ ├── Conc │ │ └── WindowsSpec.hs │ ├── EventSpec.hs │ ├── FingerprintSpec.hs │ ├── GenericsSpec.hs │ ├── RTS │ │ └── FlagsSpec.hs │ ├── StackSpec.hs │ ├── StaticPtrSpec.hs │ ├── StatsSpec.hs │ └── TypeLitsSpec.hs │ ├── GenericSpec.hs │ ├── Numeric │ └── NaturalSpec.hs │ ├── OptionsSpec.hs │ ├── System │ ├── ExitSpec.hs │ ├── IOSpec.hs │ └── Posix │ │ └── TypesSpec.hs │ ├── Text │ └── ReadSpec.hs │ └── Utils.hs └── text-show.cabal /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmarks/Bench.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/benchmarks/Bench.hs -------------------------------------------------------------------------------- /cabal.haskell-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/cabal.haskell-ci -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- 1 | packages: . 2 | -------------------------------------------------------------------------------- /shared/TextShow/TH/Names.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/shared/TextShow/TH/Names.hs -------------------------------------------------------------------------------- /src/TextShow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow.hs -------------------------------------------------------------------------------- /src/TextShow/Classes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Classes.hs -------------------------------------------------------------------------------- /src/TextShow/Control/Applicative.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Control/Applicative.hs -------------------------------------------------------------------------------- /src/TextShow/Control/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Control/Concurrent.hs -------------------------------------------------------------------------------- /src/TextShow/Control/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Control/Exception.hs -------------------------------------------------------------------------------- /src/TextShow/Control/Monad/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Control/Monad/ST.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Array.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Array/Byte.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Array/Byte.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Bool.hs -------------------------------------------------------------------------------- /src/TextShow/Data/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/ByteString.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Char.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Complex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Complex.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Data.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Dynamic.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Either.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Either.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Fixed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Fixed.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Floating.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Floating.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Functor/Compose.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Functor/Compose.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Functor/Identity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Functor/Identity.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Functor/Product.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Functor/Product.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Functor/Sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Functor/Sum.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Integral.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Integral.hs -------------------------------------------------------------------------------- /src/TextShow/Data/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/List.hs -------------------------------------------------------------------------------- /src/TextShow/Data/List/NonEmpty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/List/NonEmpty.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Maybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Maybe.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Monoid.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Monoid.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Ord.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Ord.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Proxy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Proxy.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Ratio.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Ratio.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Semigroup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Semigroup.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Text.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Tuple.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Type/Coercion.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Type/Coercion.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Type/Equality.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Type/Equality.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Typeable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Typeable.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Typeable/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Typeable/Utils.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Version.hs -------------------------------------------------------------------------------- /src/TextShow/Data/Void.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Data/Void.hs -------------------------------------------------------------------------------- /src/TextShow/Debug/Trace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Debug/Trace.hs -------------------------------------------------------------------------------- /src/TextShow/Debug/Trace/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Debug/Trace/Generic.hs -------------------------------------------------------------------------------- /src/TextShow/Debug/Trace/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Debug/Trace/TH.hs -------------------------------------------------------------------------------- /src/TextShow/Foreign/C/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Foreign/C/Types.hs -------------------------------------------------------------------------------- /src/TextShow/Foreign/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Foreign/Ptr.hs -------------------------------------------------------------------------------- /src/TextShow/FromStringTextShow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/FromStringTextShow.hs -------------------------------------------------------------------------------- /src/TextShow/Functions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Functions.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Conc/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Conc/Windows.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Event.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Event.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Fingerprint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Fingerprint.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Generics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Generics.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/RTS/Flags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/RTS/Flags.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Stack.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/StaticPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/StaticPtr.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/Stats.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/Stats.hs -------------------------------------------------------------------------------- /src/TextShow/GHC/TypeLits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/GHC/TypeLits.hs -------------------------------------------------------------------------------- /src/TextShow/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Generic.hs -------------------------------------------------------------------------------- /src/TextShow/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Instances.hs -------------------------------------------------------------------------------- /src/TextShow/Numeric/Natural.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Numeric/Natural.hs -------------------------------------------------------------------------------- /src/TextShow/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Options.hs -------------------------------------------------------------------------------- /src/TextShow/System/Exit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/System/Exit.hs -------------------------------------------------------------------------------- /src/TextShow/System/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/System/IO.hs -------------------------------------------------------------------------------- /src/TextShow/System/Posix/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/System/Posix/Types.hs -------------------------------------------------------------------------------- /src/TextShow/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/TH.hs -------------------------------------------------------------------------------- /src/TextShow/TH/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/TH/Internal.hs -------------------------------------------------------------------------------- /src/TextShow/Text/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Text/Read.hs -------------------------------------------------------------------------------- /src/TextShow/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/src/TextShow/Utils.hs -------------------------------------------------------------------------------- /tests/Derived/DataFamilies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/DataFamilies.hs -------------------------------------------------------------------------------- /tests/Derived/DatatypeContexts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/DatatypeContexts.hs -------------------------------------------------------------------------------- /tests/Derived/ExistentialQuantification.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/ExistentialQuantification.hs -------------------------------------------------------------------------------- /tests/Derived/Infix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/Infix.hs -------------------------------------------------------------------------------- /tests/Derived/MagicHash.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/MagicHash.hs -------------------------------------------------------------------------------- /tests/Derived/PolyKinds.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/PolyKinds.hs -------------------------------------------------------------------------------- /tests/Derived/RankNTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/RankNTypes.hs -------------------------------------------------------------------------------- /tests/Derived/Records.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/Records.hs -------------------------------------------------------------------------------- /tests/Derived/TypeFamilies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/TypeFamilies.hs -------------------------------------------------------------------------------- /tests/Derived/TypeSynonyms.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Derived/TypeSynonyms.hs -------------------------------------------------------------------------------- /tests/Instances/Control/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Control/Concurrent.hs -------------------------------------------------------------------------------- /tests/Instances/Control/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Control/Exception.hs -------------------------------------------------------------------------------- /tests/Instances/Control/Monad/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Control/Monad/ST.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Char.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Data.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Dynamic.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Floating.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Floating.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Monoid.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Monoid.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Ord.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Ord.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Semigroup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Semigroup.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Text.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Tuple.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Type/Coercion.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Type/Coercion.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Type/Equality.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Type/Equality.hs -------------------------------------------------------------------------------- /tests/Instances/Data/Typeable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Data/Typeable.hs -------------------------------------------------------------------------------- /tests/Instances/Foreign/C/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Foreign/C/Types.hs -------------------------------------------------------------------------------- /tests/Instances/Foreign/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Foreign/Ptr.hs -------------------------------------------------------------------------------- /tests/Instances/FromStringTextShow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/FromStringTextShow.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Conc/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Conc/Windows.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Event.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Event.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Fingerprint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Fingerprint.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Generics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Generics.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/RTS/Flags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/RTS/Flags.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Stack.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/StaticPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/StaticPtr.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/Stats.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/Stats.hs -------------------------------------------------------------------------------- /tests/Instances/GHC/TypeLits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/GHC/TypeLits.hs -------------------------------------------------------------------------------- /tests/Instances/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Generic.hs -------------------------------------------------------------------------------- /tests/Instances/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Options.hs -------------------------------------------------------------------------------- /tests/Instances/System/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/System/IO.hs -------------------------------------------------------------------------------- /tests/Instances/System/Posix/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/System/Posix/Types.hs -------------------------------------------------------------------------------- /tests/Instances/Text/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Text/Read.hs -------------------------------------------------------------------------------- /tests/Instances/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Utils.hs -------------------------------------------------------------------------------- /tests/Instances/Utils/GenericArbitrary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Instances/Utils/GenericArbitrary.hs -------------------------------------------------------------------------------- /tests/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /tests/Spec/BuilderSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/BuilderSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Control/ApplicativeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Control/ApplicativeSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Control/ConcurrentSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Control/ConcurrentSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Control/ExceptionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Control/ExceptionSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Control/Monad/STSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Control/Monad/STSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Array/ByteSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Array/ByteSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/ArraySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/ArraySpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/BoolSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/BoolSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/ByteStringSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/ByteStringSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/CharSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/CharSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/ComplexSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/ComplexSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/DataSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/DataSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/DynamicSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/DynamicSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/EitherSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/EitherSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/FixedSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/FixedSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/FloatingSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/FloatingSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Functor/ComposeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Functor/ComposeSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Functor/IdentitySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Functor/IdentitySpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Functor/ProductSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Functor/ProductSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Functor/SumSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Functor/SumSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/IntegralSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/IntegralSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/List/NonEmptySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/List/NonEmptySpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/ListSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/ListSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/MaybeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/MaybeSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/MonoidSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/MonoidSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/OrdSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/OrdSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/ProxySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/ProxySpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/RatioSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/RatioSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/SemigroupSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/SemigroupSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/TextSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/TextSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/TupleSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/TupleSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Type/CoercionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Type/CoercionSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/Type/EqualitySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/Type/EqualitySpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/TypeableSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/TypeableSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Data/VersionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Data/VersionSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/DataFamiliesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/DataFamiliesSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/DatatypeContextsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/DatatypeContextsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/ExistentialQuantificationSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/ExistentialQuantificationSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/InfixSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/InfixSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/MagicHashSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/MagicHashSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/PolyKindsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/PolyKindsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/RankNTypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/RankNTypesSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/RecordsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/RecordsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/TypeFamiliesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/TypeFamiliesSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Derived/TypeSynonymsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Derived/TypeSynonymsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Foreign/C/TypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Foreign/C/TypesSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Foreign/PtrSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Foreign/PtrSpec.hs -------------------------------------------------------------------------------- /tests/Spec/FromStringTextShowSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/FromStringTextShowSpec.hs -------------------------------------------------------------------------------- /tests/Spec/FunctionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/FunctionsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/Conc/WindowsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/Conc/WindowsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/EventSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/EventSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/FingerprintSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/FingerprintSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/GenericsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/GenericsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/RTS/FlagsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/RTS/FlagsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/StackSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/StackSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/StaticPtrSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/StaticPtrSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/StatsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/StatsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GHC/TypeLitsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GHC/TypeLitsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/GenericSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/GenericSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Numeric/NaturalSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Numeric/NaturalSpec.hs -------------------------------------------------------------------------------- /tests/Spec/OptionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/OptionsSpec.hs -------------------------------------------------------------------------------- /tests/Spec/System/ExitSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/System/ExitSpec.hs -------------------------------------------------------------------------------- /tests/Spec/System/IOSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/System/IOSpec.hs -------------------------------------------------------------------------------- /tests/Spec/System/Posix/TypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/System/Posix/TypesSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Text/ReadSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Text/ReadSpec.hs -------------------------------------------------------------------------------- /tests/Spec/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/tests/Spec/Utils.hs -------------------------------------------------------------------------------- /text-show.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanGlScott/text-show/HEAD/text-show.cabal --------------------------------------------------------------------------------