Slide 7
Slide 7 text
Simple-JSON
● Free JSON decoding with type aliases (and types in context, by annotation or usage)
type MyType = { a :: String, b :: Int }
result <- readJSON <$> readTextFile UTF8 "./config.json"
case result of
Right myType -> myFunction myType -- myFunction :: MyType -> ...
● Works with int, string, boolean, arrays, nullables, records, and more
● Records enabled by using row type information and RowToList (more on this later)
Record ( a :: String, b :: Int )
RowToList, (Cons "a" String (Cons "b" Int Nil))