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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
interface Text.Html.BlockTable where {
infixr 4 `beside`;
infixr 3 `above`;
{-# NEED #-}
instance Prelude.Functor NHC.Internal.IO;
{-# NEED #-}
instance Prelude.Monad NHC.Internal.IO;
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Fractional (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.RealFrac (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Num (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Real (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Enum (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Read a,Prelude.Integral a) => Prelude.Read (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Ord (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Eq (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Show a) => Prelude.Show (BlockTable a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Show (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Show a) => Prelude.Show (NHC.Internal.IO a);
interface Ratio
{-# NEED Ratio #-}
data Ratio a;
interface NHC.Internal
{-# NEED IO #-}
newtype {-# #-} IO a;
{-# NEED World #-}
data World;
interface ! Text.Html.BlockTable
{-# NEED showTable #-}
showTable{-# 1 #-}::(Prelude.Show a) => ((BlockTable a) -> Prelude.String);
{-# NEED showsTable #-}
showsTable{-# 1 #-}::(Prelude.Show a) => ((BlockTable a) -> Prelude.ShowS);
{-# NEED getMatrix #-}
getMatrix{-# 1 #-}::((BlockTable a) -> [[(a,(Prelude.Int,Prelude.Int))]]);
{-# NEED beside #-}
beside{-# 2 #-}::((BlockTable a) -> ((BlockTable a) -> (BlockTable a)));
{-# NEED above #-}
above{-# 2 #-}::((BlockTable a) -> ((BlockTable a) -> (BlockTable a)));
{-# NEED single #-}
single{-# 1 #-}::(a -> (BlockTable a));
{-# NEED BlockTable #-}
data BlockTable a;
}
|