I've noticed this idiom in Data.Unique:
uniqSource :: TVar Integer
uniqSource = unsafePerformIO (newTVarIO 0)
{-# NOINLINE uniqSource #-}
Is it guaranteed to only run once?
|
I've noticed this idiom in Data.Unique:
Is it guaranteed to only run once? |
|||
|
In GHC, yes.1 See the documentation for more information; there is a variant Note that The safe-globals package abstracts this "idiom" (while useful in some cases, it's generally considered an antipattern, and should not be used in normal code) in a way that ensures safety. See also my previous answer on 1 I'm pretty sure it applies to all other implementations, too; the special care GHC takes to avoid repeated execution is only necessary in a threaded setting, and I don't know of any other threaded implementations of Haskell. GHC is the only implementation people really use these days, though... |
||||
|
|
unsafePerformIOshould only be used as an implementation detail of library code, and then you should only use it because you are quite sure there is absolutely no other way to achieve the same performance/behavior. I'm not entirely sure why I felt the need to say that here, as it isn't 100% germane to the question, but there you go. – Dan Burton Dec 26 '11 at 5:29