{-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_HADDOCK hide #-} -- | -- Module: Data.Chimera.FromIntegral -- Copyright: (c) 2018 Andrew Lelechenko -- Licence: BSD3 -- Maintainer: Andrew Lelechenko module Data.Chimera.FromIntegral ( word2int, int2word, ) where word2int :: Word -> Int word2int = fromIntegral int2word :: Int -> Word int2word = fromIntegral