Documentation for how operators and functions are. #2

Merged
JonathanILevi merged 1 commits from patch-1 into master 2020-02-22 08:25:38 +00:00

View File

@ -9,15 +9,26 @@ module Numeric.MathExpr
import Data.Maybe (isJust, fromJust)
import Data.List (find)
-- | Operators are in the form (character, precedence, function)
-- Example: ('+', 0, (+)), ('', 1, ())
-- (higher the precedence, the sooner the operator operates)
--
-- Functions are in the form (name, function)
-- Example: ("ln", log)
data Settings = Settings { operators :: [(Char, Int, Double -> Double -> Double)]
, functions :: [(String, Double -> Double)]
}
-- | Operators are in the form (character, precedence, function)
-- Example: ('+', 0, (+)), ('', 1, ())
-- (higher the precedence, the sooner the operator operates)
defaultOperators = [
('+', 0, (+)), ('-', 0, (-)),
('*', 1, (*)), ('/', 1, (/)),
('^', 2, (**))
]
-- | Functions are in the form (name, function)
-- Example: ("ln", log)
defaultFunctions = [("ln", log), ("sin", sin), ("cos", cos)]
instance Default Settings where