, Id RecordWildCards . , , : , !
{-
import Data.Dynamic (dynApp, fromDynamic, toDyn)
import Data.List (foldl')
import Data.Typeable (Typeable)
-- Add the 'Typeable' instance to enable runtime type information.
data Zone = Zone
{ zId, zOwnerId, zPodsP0, zPodsP1, zPodsP2, zPodsP3 :: Int
} deriving (Show, Typeable)
mkZone :: [String] -> Maybe Zone
mkZone = fromDynamic . foldl' dynApp (toDyn Zone) . map (toDyn . readInt)
where
-- This type-specialised 'read' avoids an ambiguous type.
readInt :: String -> Int
readInt = read
Zone, :
Int -> Int -> Int -> Int -> Int -> Int -> Zone
Int, , :
Int -> Int -> Int -> Int -> Int -> Zone
Int -> Int -> Int -> Int -> Zone
Int -> Int -> Int -> Zone
Int -> Int -> Zone
Int -> Zone
Zone
:
> mkZone ["1", "2", "3", "4", "5", "6"]
Just (Zone {zId = 1, zOwnerId = 2, zPodsP0 = 3, zPodsP1 = 4, zPodsP2 = 5, zPodsP3 = 6})
, Nothing, :
> mkZone ["1", "2", "3", "4", "5"]
Nothing
, , :
> mkZone ["1", "2", "3", "4", "5", "6", "7"]
*** Exception: Type error in dynamic application.
Can't apply function <<Zone>> to argument <<Int>>
dynApply dynApp, Maybe . Maybe, Text.Read.readMaybe :
{-# LANGUAGE DeriveDataTypeable #-}
import Control.Monad ((<=<))
import Data.Dynamic (Dynamic, dynApply, fromDynamic, toDyn)
import Data.List (foldl')
import Data.Typeable (Typeable)
import Text.Read (readMaybe)
data Zone = Zone { … } deriving (Show, Typeable)
mkZone :: [String] -> Maybe Zone
mkZone = fromDynamic <=< foldl' go (Just (toDyn Zone)) . map readInt
where
go :: Maybe Dynamic -> Maybe Int -> Maybe Dynamic
go mAcc mx = do
acc <- mAcc
x <- mx
dynApply acc $ toDyn x
readInt :: String -> Maybe Int
readInt = readMaybe
, , .