Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It is possible to convert a string to a TextEncoding using

mkTextEncoding :: String -> IO TextEncoding

Is there any way to do do the reverse? Or, given a TextEncoding, any way to find out any information about that encoding? There doesn't even seem to be an Eq instance for TextEncoding to allow comparing against the defined encodings in System.IO.

Am I missing something, or is there a technical reason why this should not be possible?

share|improve this question
2  
See this answer to a similar question: stackoverflow.com/questions/3326506/haskell-print-textencoding/… – Travis Brown Oct 8 '10 at 11:41

1 Answer

up vote 2 down vote accepted

TextEncoding will be a member of the Show class in GHC 7.0.1. See ticket #4273.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.