Go to the first, previous, next, last section, table of contents.

Stable pointers

Nothing exciting here, just simple boxing up.
data StablePtr a = StablePtr (StablePtr# a)

makeStablePointer :: a -> StablePtr a
freeStablePointer :: StablePtr a -> IO ()

Go to the first, previous, next, last section, table of contents.