haste-compiler-0.4.4.4: Haskell To ECMAScript compiler

Safe HaskellNone
LanguageHaskell98

Haste.Prim

Synopsis

Documentation

data JSString Source

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.

type JSAny = Ptr Any Source

data Ptr a :: * -> *

A value of type Ptr a represents a pointer to an object, or an array of objects, which may be marshalled to or from Haskell values of type a.

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.

Instances

Unpack JSAny 
Pack JSAny 
Eq (Ptr a) 
Ord (Ptr a) 
Show (Ptr a) 
Typeable (* -> *) Ptr 

toPtr :: a -> Ptr a Source

fromPtr :: Ptr a -> a Source