Module

Simple.JSON

Package
simple-json
Repository
purerl/purescript-simple-json

#E Source

type E a = Either MultipleErrors a

An alias for the Either result of decoding

#readJSON Source

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

Read a JSON string to a type a while returning a MultipleErrors if the parsing failed.

#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.

#readJSON_ Source

readJSON_ :: forall a. ReadForeign a => String -> Maybe a

Read a JSON string to a type a while returning Nothing if the parsing failed.

#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 -> E a

Read a Foreign value to a type

#read' Source

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

#read_ Source

read_ :: forall a. ReadForeign a => Foreign -> Maybe a

Read a Foreign value to a type, as a Maybe of type

#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

#ReadForeignVariant Source

class ReadForeignVariant (xs :: RowList) (row :: Row Type) | xs -> row where

Members

Instances

#WriteForeignFields Source

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

Members

Instances

#WriteForeignVariant Source

class WriteForeignVariant (rl :: RowList) (row :: Row Type) | rl -> row where

Members

Instances

Modules
Simple.JSON