Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Chapter17
Synopsis
- f :: Num a => a -> a -> a
- g :: Num a => a -> p -> a
- switch :: Int -> a -> a -> a
- h :: Num a => a -> p -> a
- pm :: Num a => (a, b) -> a
- f1 :: [Int] -> [Int] -> Int
- f2 :: Int -> Int -> Int -> Int
- f3 :: Int -> Int -> Int
- front :: Num a => [a] -> a
- notNil :: [a] -> Bool
- pairs :: [a] -> [b] -> [(a, b)]
- pairEg :: [(Integer, Integer)]
- triangle :: Int -> [(Int, Int)]
- pyTriple :: (Num c, Enum c, Eq c) => c -> [(c, c, c)]
- runningExample :: [Int]
- isEven :: Int -> Bool
- perms :: Eq a => [a] -> [[a]]
- perm :: [a] -> [[a]]
- splits :: [a] -> [([a], [a])]
- type Vector = [Float]
- scalarProduct :: Vector -> Vector -> Float
- type Matrix = [Vector]
- matrixProduct :: Matrix -> Matrix -> Matrix
- columns :: Matrix -> Matrix
- refPattEx :: [Integer]
- sumFourthPowers :: Int -> Int
- minList :: [Int] -> Int
- graphEx :: Set (Integer, Integer)
- routes :: Ord a => Relation a -> a -> a -> [[a]]
- nbhrs :: Ord a => Relation a -> a -> [a]
- routeEx1 :: [[Integer]]
- routeEx2 :: [[Integer]]
- routesC :: Ord a => Relation a -> a -> a -> [a] -> [[a]]
- ones :: [Int]
- addFirstTwo :: [Int] -> Int
- infEx1 :: Int
- from :: Int -> [Int]
- fromStep :: Int -> Int -> [Int]
- infEx2 :: [Int]
- pythagTriples :: [(Integer, Integer, Integer)]
- powers :: Int -> [Int]
- primes :: [Int]
- sieve :: Integral a => [a] -> [a]
- memberOrd :: Ord a => [a] -> a -> Bool
- nextRand :: Int -> Int
- randomSequence :: Int -> [Int]
- seed :: Int
- multiplier :: Int
- increment :: Int
- modulus :: Int
- scaleSequence :: Int -> Int -> [Int] -> [Int]
- makeFunction :: [(a, Double)] -> Double -> a
- makeFun :: (Ord t, Num t) => [(a, t)] -> t -> t -> a
- randomTimes :: [Integer]
- dist :: [(Integer, Double)]
- pythagTriples2 :: [(Integer, Integer, Integer)]
- listSums :: [Int] -> [Int]
- listSumsEx :: [Int]
- listSums' :: [Integer] -> [Integer]
- scanl' :: (a -> b -> b) -> b -> [a] -> [b]
- facVals :: [Integer]
- fac :: Int -> Int
- facMap :: [Int]
- facs :: [Int]
Documentation
runningExample :: [Int] Source #
sumFourthPowers :: Int -> Int Source #
routesC :: Ord a => Relation a -> a -> a -> [a] -> [[a]] Source #
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^
addFirstTwo :: [Int] -> Int Source #
randomSequence :: Int -> [Int] Source #
multiplier :: Int Source #
makeFunction :: [(a, Double)] -> Double -> a Source #
randomTimes :: [Integer] Source #
listSumsEx :: [Int] Source #