File: FloatingHex.cabal

package info (click to toggle)
haskell-floatinghex 0.5-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: haskell: 90; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Name:                FloatingHex
Version:             0.5
Synopsis:            Read and write hexadecimal floating point numbers
Description:         Read and write hexadecimal floating point numbers. Provides a quasiquoter for
                     entering hex-float literals, and a function for printing them in hexadecimal.
                     .
                     See: <http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf>, pages 57-58.
                     We slightly diverge from the standard and do not allow for the "floating-suffix,"
                     as the type inference of Haskell makes this unnecessary.
                     .
                     For details, please see: <http://github.com/LeventErkok/FloatingHex/>
License:             BSD3
License-file:        LICENSE
Author:              Levent Erkok
Maintainer:          erkokl@gmail.com
Copyright:           Levent Erkok
Category:            Tools
Build-type:          Simple
Cabal-version:       >= 1.14
Extra-Source-Files:  INSTALL, README.md, COPYRIGHT, CHANGES.md

source-repository head
    type:       git
    location:   git://github.com/LeventErkok/FloatingHex.git

Library
  ghc-options     : -Wall
  default-language: Haskell2010
  Build-Depends   : base >= 4 && < 5, template-haskell >= 2.10
  Exposed-modules : Data.Numbers.FloatingHex