Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/include/Ratio.hi

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


interface Ratio where {
infixl  7 %;

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Fractional (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Num (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Real (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.RealFrac (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Enum (Ratio a);

{-# NEED #-}
instance (Prelude.Read a,Prelude.Integral a) => Prelude.Read (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Eq (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Ord (Ratio a);

{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Show (Ratio a);
interface ! Ratio
{-# NEED numerator #-}
numerator{-# 1 #-}::(Prelude.Integral a) => ((Ratio a) -> a);

{-# NEED denominator #-}
denominator{-# 1 #-}::(Prelude.Integral a) => ((Ratio a) -> a);

{-# NEED (%) #-}
(%){-# 2 #-}::(Prelude.Integral a) => (a -> (a -> (Ratio a)));

{-# NEED approxRational #-}
approxRational{-# 2 #-}::(Prelude.RealFrac a) => (a -> (a -> Rational));

{-# NEED Rational #-}
type {-# 1 #-} Rational = (Ratio Prelude.Integer);

{-# NEED Ratio #-}
data (Prelude.Integral a) => Ratio a;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.