JSON - grownith/jsontex GitHub Wiki

JSONTex is base on JSON. This wiki might refer to definition defined below

JSON

  • primitive
    • null
    • boolean
      • false
      • true
    • number
    • string
  • collection
    • array
    • object

primitive

Primitive refer to any type that was a primitive JSON type. Which include null,true,false,number and string

boolean

Boolean type are specific primitive true and false

collection

JSONTex view both array and object as collection that could be equally iterate and operate in the same way. Object will be ordered by its original order. Only when doing comparison that each object will compare with each other in unordered manner

null

Almost all invalid operation in jsontex will return null