我正在努力学习 Haskell。
我正在阅读此处[1] 上的代码。我只是从第 46 行和第 298-300 行复制并粘贴了部分代码。
问题: (..) 是什么意思?
我把它搞砸了,但我没有得到任何结果。
module Pos.Core.Types(
-- something here
SharedSeed (..) -- what does this mean?
) where
newtype SharedSeed = SharedSeed
{ getSharedSeed :: ByteString
} deriving (Show, Eq, Ord, Generic, NFData, Typeable)
[1] https://github.com/input-output-hk/cardano-sl/blob/master/core/Pos/Core/Types.hs