Rewrite of Nikita Volkov's refined library.
- same concept
- same performance
- more predicates (signed value comparisons)
- more features (functor predicates, predicate simplification)
- better ergonomics (no insidious
Typeable
constraints) - neater internals: fewer dependencies (no
aeson
), better errors, more concise
I used the original refined library fairly extensively to power other libraries (see strongweak, binrep), though I moved to a fork refined1 some time ago to provide a feature I needed. I think the library has some flaws and I want to contribute, but my tiny tweaks are still pending after a few years. A good excuse to rewrite from the ground up.
All source code is original.
rerefined is a complete modern rewrite. As such, it works plenty differently, and doesn't support older GHCs.
I do want to add missing features into refined, such as functor predicates. But refined is receiving minimal maintenance recently (2022-2024), and my changesets are languishing.
Some predicates operate on the f
of an f a
. In such cases, given an
Refined1 (f a) :: Refined1 p f a
, we should be permitted to make changes
inside the functor, that do not change the functor structure/shape. These are
provided by the Functor
and Traversable
instances on Refined1
.
Draft PR for refined at refined#99.
A primitive predicate simplifier is provided at Rerefined.Simplify
. It can
simplify immediate cases of identity laws and so on.
Rerefined.Predicate.Operators
exports type synonyms for writing predicates
using infix operators. (refined provides a handful, but they coincide with
existing operators, such as &&
.)
refined encoded the logical predicates in its error type. This doesn't enable any further analysis, just turns a non-sum type into a sum type and complicates consumption. Furthermore, this error type is first transformed into another recursive ADT, which is only then pretty printed. This is unnecessary (even mentioned in the code).
rerefined has a single-constructor error type which can be easily and efficiently turned into a string-like in a single pass.
See refined#101.
Typeable
is useful, but the way it is used brings lots of Typeable
contexts.
rerefined asks that you do a bit more work upfront, but gives you tools and grants much more power. Predicates now must declare a "name":
class Predicate p where type PredicateName (d :: Natural) p :: Symbol
Precedence is supported to permit writing names as infix operators. (For now,
the logical operators primarily look like their propositional logic
counterparts.) The type-level-show package provides utilities for
printing Natural
s and handling precedence.
What do LessThan
, GreaterThan
, EqualTo
etc. have in common? They're all
relational binary operators where one value is a pre-filled Natural
. rerefined
packs all of these into a single predicate that takes a type-level relational
operator. Only one instance for the same amount of code, and much easier to
reason about.
We take this even further and allow passing a type-level sign, to enable comparing negative values.
We take this even further and use the same relational operator definitions to define length comparisons, where the other value is taken from the input's length (rather than its numeric value). This does not take a sign, since length must be non-negative.
You know that length comparison predicate above? It has a single instance for
each of Refined1
and Refined
:
-- | Compare the length of a 'Foldable' to a type-level 'Natural' using the
-- given 'RelOp'.
instance (KnownNat n, Foldable f, ReifyRelOp op)
=> Refine1 (CompareLength op n) f where
validate1 p = validateCompareLength p . length
-- | Compare the length of a 'MonoFoldable' to a type-level 'Natural' using the
-- given 'RelOp'.
instance (KnownNat n, MonoFoldable a, ReifyRelOp op)
=> Refine (CompareLength op n) a where
validate p = validateCompareLength p . olength
We get a ton more instances for a ton less code. (Note that mono-foldable has a surprisingly small footprint, as most of its transitive dependencies are core libraries.)
- much cleaner module organization
- predicates defined in standalone modules; only import what you need
Rerefined.Predicate.Via.validateVia
for defining predicates that are implemented by an existing predicate- more logical predicates (NAND, if, if-and-only-if)
Provided under the MIT license. See LICENSE
for license text.