1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00

Define an Output instance for ByteString.

This commit is contained in:
Rob Rix 2017-07-28 11:21:21 -04:00
parent ab2c1a7cd3
commit 5da9f90532

View File

@ -4,3 +4,6 @@ import Prologue
class Monoid o => Output o where
toOutput :: o -> ByteString
instance Output ByteString where
toOutput s = s