If you don't want to depend on text-icu, there is support for more Unicode space characters in https://hackage.haskell.org/package/base-4.8.2.0/docs/Data-C...
import Data.Char (isAlpha, isLower, isSpace) import qualified Data.Text as T
textIsAllSpace t = T.all isSpace t
If you don't want to depend on text-icu, there is support for more Unicode space characters in https://hackage.haskell.org/package/base-4.8.2.0/docs/Data-C...
giving you e.g.