Safe Haskell | None |
---|---|
Language | Haskell98 |
Documentation
JSStrings are represented as normal strings server-side; should probably be changed to ByteString or Text.
catJSStr :: JSString -> [JSString] -> JSString Source
Concatenate a series of JSStrings using the specified separator.
Any JS value, with one layer of indirection.
data Ptr a :: * -> *
A value of type
represents a pointer to an object, or an
array of objects, which may be marshalled to or from Haskell values
of type Ptr
aa
.
The type a
will often be an instance of class
Storable
which provides the marshalling operations.
However this is not essential, and you can provide your own operations
to access the pointer. For example you might write small foreign
functions to get or set the fields of a C struct
.
veryUnsafePerformIO :: IO a -> a Source
Strict, inlineable, dupable version of unsafePerformIO
. Only use if you
are extremely sure this is not a problem. So please don't.