fin: Nat and Fin: peano naturals and finite numbers

[ bsd3, data, dependent-types, library, math, singletons ] [ Propose Tags ]

This package provides two simple types, and some tools to work with them. Also on type level as DataKinds.

-- Peano naturals
data Nat = Z | S Nat

-- Finite naturals
data Fin (n :: Nat) where
    Z :: Fin ('S n)
    S :: Fin n -> Fin ('Nat.S n)

vec implements length-indexed (sized) lists using this package for indexes.

The Data.Fin.Enum module let's work generically with enumerations.

See Hasochism: the pleasure and pain of dependently typed haskell programming by Sam Lindley and Conor McBride for answers to how and why. Read APLicative Programming with Naperian Functors by Jeremy Gibbons for (not so) different ones.

Similar packages

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0, 0.0.1, 0.0.2, 0.0.3, 0.1, 0.1.1, 0.2, 0.2.1, 0.3
Change log ChangeLog.md
Dependencies base (>=4.7 && <4.20), bifunctors (>=5.5.3 && <5.7), boring (>=0.2 && <0.3), dec (>=0.0.4 && <0.1), deepseq (>=1.3.0.2 && <1.6), hashable (>=1.2.7.0 && <1.5), nats (>=1.1.2 && <1.2), QuickCheck (>=2.13.2 && <2.15), semigroups (>=0.18.5 && <0.21), some (>=1.0.4 && <1.1), universe-base (>=1.1.2 && <1.2), void (>=0.7.3 && <0.8) [details]
License BSD-3-Clause
Copyright (c) 2017-2021 Oleg Grenrus
Author Oleg Grenrus <oleg.grenrus@iki.fi>
Maintainer Oleg.Grenrus <oleg.grenrus@iki.fi>
Revised Revision 2 made by phadej at 2023-10-24T21:02:18Z
Category Data, Dependent Types, Singletons, Math
Home page https://github.com/phadej/vec
Bug tracker https://github.com/phadej/vec/issues
Source repo head: git clone https://github.com/phadej/vec.git(fin)
Uploaded by phadej at 2023-03-21T14:01:23Z
Distributions Arch:0.3, LTSHaskell:0.3, NixOS:0.3, Stackage:0.3
Reverse Dependencies 14 direct, 7714 indirect [details]
Downloads 11352 total (167 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2023-03-21 [all 1 reports]