dvorak-0.1.0.0: Dvorak encoding for Haskell.

Copyright(c) Kyle Van Berendonck, 2014
LicenseBSD3
Maintainerkvanberendonck@gmail.com
Stabilityexperimental
Portabilityportable
Safe HaskellTrustworthy
LanguageHaskell2010

Codec.Dvorak

Description

This module exposes all the API for this package.

Synopsis

Documentation

toDvorakChar :: Char -> Char Source

Encodes a single given Char to its dvorak encoded equivalent.

toDvorak :: String -> String Source

Encodes a string to its dvorak encoded equivalent using toDvorakChar. Analagous to:

   toDvorak = map toDvorakChar

fromDvorakChar :: Char -> Char Source

Decodes a single given Char from its dvorak encoded equivalent.

fromDvorak :: String -> String Source

Decodes a string from its dvorak encoded equivalent using fromDvorakChar. Analagous to:

   fromDvorak = map fromDvorakChar