Any idea was the atomically# mean in the following code?<br><br clear="all">atomically :: STM a -> IO a<br>atomically (STM m) = IO (\s -> (<b>atomically# </b>m) s )<br><br>Code is from GHC.Conc module <a href="http://www.haskell.org/ghc/docs/6.6/html/libraries/base/GHC-Conc.html">http://www.haskell.org/ghc/docs/6.6/html/libraries/base/GHC-Conc.html</a><br>
<br>daryoush<br>