Module

Simple.JSON

Package
purescript-simple-json
Repository
justinwoo/purescript-simple-json

#readJSON Source

readJSON :: forall a. ReadForeign a => String -> F a

Read a JSON string to a type a using F a. Useful with record types.

#writeJSON Source

writeJSON :: forall a. WriteForeign a => a -> String

Write a JSON string from a type a.

#write Source

write :: forall a. WriteForeign a => a -> Foreign

#read Source

read :: forall a. ReadForeign a => Foreign -> F a

#ReadForeign Source

class ReadForeign a  where

A class for reading foreign values to a type

Members

Instances

#ReadForeignFields Source

class ReadForeignFields (xs :: RowList) (from :: Row Type) (to :: Row Type) | xs -> from to where

A class for reading foreign values from properties

Members

Instances

#WriteForeign Source

class WriteForeign a  where

A class for writing a value into JSON need to do this intelligently using Foreign probably, because of null and undefined whatever

Members

Instances

#WriteForeignFields Source

class WriteForeignFields (rl :: RowList) row (from :: Row Type) (to :: Row Type) | rl -> row from to where

Members

Instances

Modules
Simple.JSON