minio / simdjson-go

Golang port of simdjson: parsing gigabytes of JSON per second
Apache License 2.0
1.81k stars 85 forks source link

Support Go 1.23 iterator #88

Open FlowingSPDG opened 2 weeks ago

FlowingSPDG commented 2 weeks ago

Hi, thank you for maintaining nice project!

Some Go 1.23 adds official iterator(iter.Seq), I think this package can also support itas well.

I'll make a PR once I got time to work on this.

klauspost commented 2 weeks ago

No problem. Simple rules:

A) No API breaking. B) Guard behind go1.23 build tags, so Go 1.21 and 1.22 will work. C) Reasonable documentation and tests (ie "none" will not be accepted)