是否有一個函數在Haskell喜歡說:哈斯克爾:最大/最小功能
max_of_type :: (Num a) => a
所以:
max_of_type :: Int == 2^31 - 1 // for example, implementation dependent
是否有一個函數在Haskell喜歡說:哈斯克爾:最大/最小功能
max_of_type :: (Num a) => a
所以:
max_of_type :: Int == 2^31 - 1 // for example, implementation dependent
糟糕,這只是maxBound
和minBound
。
請注意,這不是一個功能;它只是一個值,雖然由類型實例定義。 – Ashe