Documentation
¶
Index ¶
- Variables
- func Iterate(s []byte, cb func(typ TokenType, idx, len int)) error
- func Patch(data []byte, path string, f func([]byte) []byte) ([]byte, int)
- type Iterator
- func (iter *Iterator) Next() (TokenType, int, int)
- func (iter *Iterator) NextArray(cb func(idx int) bool) error
- func (iter *Iterator) NextObject(cb func(key *Token) bool) error
- func (iter *Iterator) NextToken(t *Token) *Token
- func (iter *Iterator) Peek() TokenType
- func (iter *Iterator) Reset(data []byte)
- func (iter *Iterator) Select(path string, cb func(iter *Iterator)) error
- func (iter *Iterator) Skip() (TokenType, int, int)
- func (iter *Iterator) Validate() error
- type Token
- type TokenType
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrPanic = errors.New("panic occurred") ErrUnexpectedSep = errors.New("invalid separator") ErrEarlyEOF = errors.New("early EOF") ErrInterrupt = errors.New("interrupted by user") ErrUnexpectedToken = errors.New("invalid TokenType") ErrInvalidParentheses = errors.New("invalid parentheses") ErrStandardViolation = errors.New("json not compliant to RFC8259") // for some simple validations ErrInvalidJsonpath = errors.New("invalid jsonpath") )
Functions ¶
Types ¶
type Iterator ¶ added in v0.6.0
type Iterator struct { Error error // contains filtered or unexported fields }
func (*Iterator) NextObject ¶ added in v0.6.0
NextObject iterates over the next value as an object, assuming that it is one. One MUST be aware that the "key" callback parameter is only valid before next call to ANY method on Iterator
Click to show internal directories.
Click to hide internal directories.