---------------------------------------------------------------------- > module Prim ( Ident(..), Prim(..) > ) > where ----------------------------------------------------------------------
---------------------------------------------------------------------- > type Ident = String ----------------------------------------------------------------------
---------------------------------------------------------------------- > data Prim = Sin -- trigonometric > | Cos > | Tan > | Cot > | Exp -- exponential > | Ln > | Log -- base: 10 > | Arcsin -- arcus > | Arccos > | Arctan > | Arccot > | Sinh -- hyperbolic > | Cosh > | Tanh > | Coth > | Abs -- absolute > deriving (Eq, Ord, Text) ----------------------------------------------------------------------
Go to the first, previous, next, last section, table of contents.