antiope-core-6.1.5: src/Antiope/Core/Internal/Show.hs
module Antiope.Core.Internal.Show ( tshowNum ) where import Data.Text (Text) import qualified Data.Text as T tshowNum :: (Num a, Show a) => a -> Text tshowNum = T.pack . show
module Antiope.Core.Internal.Show ( tshowNum ) where import Data.Text (Text) import qualified Data.Text as T tshowNum :: (Num a, Show a) => a -> Text tshowNum = T.pack . show