haskell / text

Haskell library for space- and time-efficient operations over Unicode text.

Home Page:http://hackage.haskell.org/package/text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

toUpper and friends are all `INLINE`d

phadej opened this issue · comments

So every single call has these functions replicated. Is this intentional? This causes code-bloat for questionable performance benefits (the known call is not that slow).

I'd gladly take a PR replacing INLINE with INLINABLE.