text-short icon indicating copy to clipboard operation
text-short copied to clipboard

Memory-efficient representation of Unicode text strings

Results 3 text-short issues
Sort by recently updated
recently updated
newest added

I've got this defined in one of my projects: ``` newtype ShortText# :: TYPE ('BoxedRep 'Unlifted) where ShortText# :: ByteArray# -> ShortText# lift :: ShortText# -> ShortText lift (ShortText# x)...

This does not work with GHCJS because of it uses the c ffi. Not sure if there's a great workaround for this.

help wanted