kubernetes/vendor/github.com/json-iterator/go/iter_skip.go

// ReadNil reads a json object as nil and
// returns whether it's a nil or not
func (iter *Iterator) ReadNil() (ret bool) {}

// ReadBool reads a json object as BoolValue
func (iter *Iterator) ReadBool() (ret bool) {}

// SkipAndReturnBytes skip next JSON element, and return its content as []byte.
// The []byte can be kept, it is a copy of data.
func (iter *Iterator) SkipAndReturnBytes() []byte {}

// SkipAndAppendBytes skips next JSON element and appends its content to
// buffer, returning the result.
func (iter *Iterator) SkipAndAppendBytes(buf []byte) []byte {}

func (iter *Iterator) startCaptureTo(buf []byte, captureStartedAt int) {}

func (iter *Iterator) startCapture(captureStartedAt int) {}

func (iter *Iterator) stopCapture() []byte {}

// Skip skips a json object and positions to relatively the next json object
func (iter *Iterator) Skip() {}

func (iter *Iterator) skipFourBytes(b1, b2, b3, b4 byte) {}

func (iter *Iterator) skipThreeBytes(b1, b2, b3 byte) {}