lexer := &jlexer.Lexer{Data: []byte(`{"foo": {"bar": "baz"}}`)} lexer.SkipRecursive()
lexer := &jlexer.Lexer{Data: []byte(`{"foo": ["bar", "baz"]}`)} lexer.Varint() lexer.SkipRecursive()In this example, the lexer reads a varint value for the "foo" key and then calls the SkipRecursive method to skip over the nested array. This positions the lexer at the end of the "foo" array. Overall, the Lexer SkipRecursive method provides an efficient way to navigate through and parse complex JSON structures in Go using the easyjson/jlexer library.