Kinds of bugs that are more likely/prone in Haskell programs than in other languages?

后端 未结 3 784
旧巷少年郎
旧巷少年郎 2021-02-14 17:41

One of the highly-touted features is that if a program compiles, it highly likely to be mostly correct, more so than a program written in a language with a less sophisticated or

3条回答
  •  清酒与你
    2021-02-14 18:31

    Consider the following dataype:

    {-# LANGUAGE DeriveFunctor #-}
    {-# LANGUAGE DeriveFoldable #-}
    {-# LANGUAGE DeriveTraversable #-}
    
    import Data.Foldable
    import qualified Data.Traversable as T
    import Control.Monad.Random
    
    data U a = U [a] a deriving (Show,Functor,Foldable,T.Traversable)
    

    I want to create a U Int with random values. It's easy using the Traversable instance:

    ri :: Rand StdGen Int
    ri = getRandomR (0,3)
    
    randomU :: U Int
    randomU =  flip evalRand (mkStdGen 7) 
             . T.sequence
             $ U (replicate 3 ri) ri  
    
    putStrLn . show $ randomU -- works
    

    Now I create a random infinite U Int and print the first three values of the list:

    randomInfiniteU :: U Int
    randomInfiniteU =  flip evalRand (mkStdGen 7) 
                     . T.sequence
                     $ U (repeat ri) ri  
    
    putStrLn . show $ take 3 $ (\(U l _) -> l) $ randomInfiniteU
    

    Works fine as well. As a last test, let's print the single value to the right:

    putStrLn . show $ (\(U _ i) -> i) $ randomInfiniteU
    

    Ugh. This hangs.

提交回复
热议问题