mirror of
https://github.com/tfausak/witch.git
synced 2024-11-23 08:53:25 +03:00
18 lines
445 B
Haskell
18 lines
445 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
|
|
module Witch.Encoding where
|
|
|
|
import qualified Data.Tagged as Tagged
|
|
|
|
-- | <https://en.wikipedia.org/wiki/ISO/IEC_8859-1>
|
|
type ISO_8859_1 = Tagged.Tagged "ISO-8859-1"
|
|
|
|
-- | <https://en.wikipedia.org/wiki/UTF-8>
|
|
type UTF_8 = Tagged.Tagged "UTF-8"
|
|
|
|
-- | <https://en.wikipedia.org/wiki/UTF-16>
|
|
type UTF_16LE = Tagged.Tagged "UTF-16LE"
|
|
|
|
-- | <https://en.wikipedia.org/wiki/UTF-16>
|
|
type UTF_16BE = Tagged.Tagged "UTF-16BE"
|