blob: 64d261b6aee093bd31e2de1194570194e08157d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Blessings.Text
( module Blessings
) where
import Blessings
import Blessings.Internal
import Data.Text (Text)
import qualified Data.Text as T
instance Blessable Text where
length = T.length
drop = T.drop
take = T.take
intercalate = T.intercalate
fromInt = T.pack . show
|