Unsafe functions

From HaskellWiki
Revision as of 01:52, 8 May 2006 by Ashley Y (talk | contribs)
Jump to navigation Jump to search

There are a number of unsafe functions in the libraries.

  • unsafePerformIO :: IO a -> a
  • unsafeInterleaveIO :: IO a -> IO a
  • unsafeInterleaveST :: ST s a -> ST s a
  • unsafeIOToST :: IO a -> ST s a
  • unsafeIOToSTM :: IO a -> STM a
  • unsafeFreeze, unsafeThaw

This article is a stub. You can help by expanding it.