File: ArithmeticFunctions.hs

package info (click to toggle)
haskell-arithmoi 0.13.0.0-1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 988 kB
  • sloc: haskell: 10,437; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- |
-- Module:      Math.NumberTheory.ArithmeticFunctions
-- Copyright:   (c) 2016 Andrew Lelechenko
-- Licence:     MIT
-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>
--
-- This module provides an interface for defining and manipulating
-- arithmetic functions. It also defines several most widespreaded
-- arithmetic functions.
--

module Math.NumberTheory.ArithmeticFunctions
  ( module Math.NumberTheory.ArithmeticFunctions.Class
  , module Math.NumberTheory.ArithmeticFunctions.Standard
  ) where

import Math.NumberTheory.ArithmeticFunctions.Class
import Math.NumberTheory.ArithmeticFunctions.Standard