acme-pointful-numbers-0.1.2.3: Make more than one point in numeric literals

Copyright(c) 2014 Antonio Nikishaev
LicenseBSD-style
Maintainera@lelf.me
Safe HaskellSafe-Inferred
LanguageHaskell2010

Acme.Pointful

Description

This module allows you to make more points in your numbers

import Prelude hiding ((.))
import Acme.Pointful       -- re-exports Control.Category's (.)


ghc, ip ∷ Pointful

ghc = 7.8.2                -- ≡ Pointful [7,8,2]
ip  = 192.168.100.1

It won't work with big numbers (and it won't even try to prevent incorrect results). Up to 7 digits is ok.

Don't use if your code is not pointless enough.

Synopsis

Documentation

type Pointful = () + ((), ()) Source

id :: Category k cat => forall a. cat a a

the identity morphism

(.) :: Category k cat => forall b c a. cat b c -> cat a b -> cat a c

morphism composition