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