Module

Data.Dynamic

Package
purescript-dynamic
Repository
raduom/purescript-dynamic

#Any Source

data Any :: Type

#Dynamic Source

data Dynamic

The type used to encode dynamicaly typed objects

Constructors

Instances

#toDynamic Source

toDynamic :: forall a. Typeable a => a -> Dynamic

Converts an arbitrary value into an object of type Dynamic

#fromDynamic Source

fromDynamic :: forall a. Typeable a => Dynamic -> Maybe a

Converts a Dynamic object back into an ordinary value of the correct type.

Modules
Data.Dynamic