Allen

Results 18 comments of Allen

`Set` will exactly set what your `[]byte` contains. If you don't like to handle the escape with the slash, you may try a backtick string ```go configBytes, err := j.Set(configByte,...

Thanks for reporting. I'll take a look

Yes, thanks for the kind reminder

why is this pr not merged? I think it has fixed #597 @elithrar

> I have not had time to review. Please be patient - this is not a paid for project and is entirely volunteer run. > > (Please do not continually...

Thanks for reporting! I think it's a bug about the lexer when scanning integer type values

You can register an extension. ```go type TestObjectForIssue392 struct { DynamicOmitField string OtherField string } type OmitFieldExtension struct { jsoniter.DummyExtension } func (e *OmitFieldExtension) UpdateStructDescriptor(structDescriptor *jsoniter.StructDescriptor) { if structDescriptor.Type.String() !=...

Is your question about Marshal? If it is, you can create a stream and use it to Marshal your struct. ```go func issue436(){ type TestObject struct{ Name string Id int...