Skip to content
Snippets Groups Projects
Commit 41c4e4a0 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-05-29 12:26:03 by simonm]

Replace some GENERATE_SPECs with SPECIALISE pragmas.
parent f43737f9
No related merge requests found
......@@ -24,21 +24,22 @@ infixl 9 !, //
\end{code}
\begin{code}
{-# GENERATE_SPECS array a{~,Int,IPr} b{} #-}
{-# SPECIALISE array :: (Int,Int) -> [(Int,b)] -> Array Int b #-}
array :: (Ix a) => (a,a) -> [(a,b)] -> Array a b
{-# GENERATE_SPECS (!) a{~,Int,IPr} b{} #-}
{-# SPECIALISE (!) :: Array Int b -> Int -> b #-}
(!) :: (Ix a) => Array a b -> a -> b
{-# SPECIALISE bounds :: Array Int b -> (Int,Int) #-}
bounds :: (Ix a) => Array a b -> (a,a)
{-# GENERATE_SPECS (//) a{~,Int,IPr} b{} #-}
{-# SPECIALISE (//) :: Array Int b -> [(Int,b)] -> Array Int b #-}
(//) :: (Ix a) => Array a b -> [(a,b)] -> Array a b
{-# GENERATE_SPECS accum a{~,Int,IPr} b{} c{} #-}
{-# SPECIALISE accum :: (b -> c -> b) -> Array Int b -> [(Int,c)] -> Array Int b #-}
accum :: (Ix a) => (b -> c -> b) -> Array a b -> [(a,c)] -> Array a b
{-# GENERATE_SPECS accumArray a{~,Int,IPr} b{} c{} #-}
{-# SPECIALISE accumArray :: (b -> c -> b) -> b -> (Int,Int) -> [(Int,c)] -> Array Int b #-}
accumArray :: (Ix a) => (b -> c -> b) -> b -> (a,a) -> [(a,c)] -> Array a b
\end{code}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment