streamly-0.7.0: src/Streamly/Internal/Data/Unicode/Char.hs
{-# OPTIONS_HADDOCK hide #-}
{-# LANGUAGE FlexibleContexts #-}
-- |
-- Module : Streamly.Data.Internal.Unicode.Char
-- Copyright : (c) 2018 Composewell Technologies
--
-- License : BSD3
-- Maintainer : streamly@composewell.com
-- Stability : experimental
-- Portability : GHC
--
module Streamly.Internal.Data.Unicode.Char
(
-- * Unicode aware operations
{-
toCaseFold
, toLower
, toUpper
, toTitle
-}
)
where
-- import Streamly (IsStream)
-------------------------------------------------------------------------------
-- Unicode aware operations on strings
-------------------------------------------------------------------------------
{-
-- |
-- /undefined/
toCaseFold :: IsStream t => Char -> t m Char
toCaseFold = undefined
-- |
-- /undefined/
toLower :: IsStream t => Char -> t m Char
toLower = undefined
-- |
-- /undefined/
toUpper :: IsStream t => Char -> t m Char
toUpper = undefined
-- |
-- /undefined/
toTitle :: IsStream t => Char -> t m Char
toTitle = undefined
-}