raft-0.3.7.0: Miscellaneous Haskell utilities for data structures and data manipulation.

Safe HaskellSafe
LanguageHaskell2010

Math.Fractions

Contents

Description

Deprecated: This module will be removed in a future release.

Some special operations with fractions.

Synopsis

Functions

fractions :: (Ord b, Fractional c) => (a -> (b, c)) -> [a] -> [(b, c)] Source #

Apply a function to a list to extract keys with values that sum to unity.

fractionsMaybe :: (Ord b, Fractional c) => (a -> Maybe (b, c)) -> [a] -> [(b, c)] Source #

Apply a function to a list to extract keys with values that sum to unity.