type-level-integers alternatives and similar packages
Based on the "type" category.
Alternatively, view type-level-integers alternatives based on common mentions on social networks and blogs.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of type-level-integers or a related project?
README
type-level-integers
This Haskell package implements naive type level integers. It exposes
the module Data.Type.Integer
which exports a new kind LiftedInt
populated by the types Z
(zero) and LInt Sign PosNat
. In other
words, a (type level) integer is either zero or a positive natural
number together with a sign.
The module exports the type families LIntSucc
, LIntPred
,
LIntInvert
, LIntPlus
and LIntMinus
for manipulating types of
kind LiftedInt
.