haskell / text

Haskell library for space- and time-efficient operations over Unicode text.
http://hackage.haskell.org/package/text
BSD 2-Clause "Simplified" License
408 stars 159 forks source link

toUpper and friends are all `INLINE`d #578

Open phadej opened 7 months ago

phadej commented 7 months ago

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).

Bodigrim commented 7 months ago

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