package jsonparser

func ( []byte) int {
	,  := ParseString()
	if  != nil ||  == "" {
		return 0
	}
	return 1
}

func ( []byte) int {
	 := [][]string{
		{"name"},
		{"order"},
		{"nested", "a"},
		{"nested", "b"},
		{"nested2", "a"},
		{"nested", "nested3", "b"},
		{"arr", "[1]", "b"},
		{"arrInt", "[3]"},
		{"arrInt", "[5]"},
		{"nested"},
		{"arr", "["},
		{"a\n", "b\n"},
	}
	EachKey(, func( int,  []byte,  ValueType,  error) {}, ...)
	return 1
}

func ( []byte) int {
	Delete(, "test")
	return 1
}

func ( []byte) int {
	,  := Set(, []byte(`"new value"`), "test")
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	_ = ObjectEach(, func(,  []byte,  ValueType,  int) error {
		return nil
	})
	return 1
}

func ( []byte) int {
	,  := ParseFloat()
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := ParseInt()
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := ParseBoolean()
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	_ = tokenStart()
	return 1
}

func ( []byte) int {
	,  := GetString(, "test")
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := GetFloat(, "test")
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := GetInt(, "test")
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := GetBoolean(, "test")
	if  != nil {
		return 0
	}
	return 1
}

func ( []byte) int {
	,  := GetUnsafeString(, "test")
	if  != nil {
		return 0
	}
	return 1
}