我是 Haskell 的初学者。假设 Rat 是整数或整数的分数类型。我想问一下,为什么要导出这个 Rat 的构造函数?
module RatNum(Rat,add1Rat,makeRat) where
infixl 5 :/
data Rat = Int :/ Int | Only Int deriving(Show)
add1Rat :: Rat -> Rat
add1Rat (a :/ b) = (a+b) :/ b
add1Rat (Only a) = Only (a+1)
makeRat :: Rat
makeRat = 1 :/ 1
makeORat :: Rat
makeORat = Only 1
在 GHCI 中:
Prelude> :l RatNum
[1 of 1] Compiling RatNum ( RatNum.hs, interpreted )
Ok, modules loaded: RatNum.
*RatNum> Only 5
Only 5
*RatNum> add1Rat (1:/3)
4 :/ 3
*RatNum> 7:/5
7 :/ 5
该模块尚未完成,我想隐藏 Rat 的构造函数。