gitee.com/zhongguo168a/gocodes@v0.0.0-20230609140523-e1828349603f/datax/jsonmap/jsonvalue/json-kind.go (about)

     1  package jsonvalue
     2  
     3  type JSONValue int8
     4  
     5  const (
     6  	Invalid JSONValue = iota
     7  	Bool
     8  	Int
     9  	UInt
    10  	Float64
    11  	String
    12  	Map
    13  	Nil
    14  )