blob: bc3d8cc41cb08c4e11b99ba02a4c8a814f1f1f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{-# LANGUAGE FlexibleInstances #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Blessings.String
( module Blessings
) where
import Blessings
import Blessings.Internal
import qualified Data.List as L
instance Blessable String where
length = L.length
drop = L.drop
take = L.take
splitAt = L.splitAt
intercalate = L.intercalate
fromWord8 = show
|