Marco C.

Results 5 comments of Marco C.

### Update Turned out that the problem is with more fields than just `xml` and `externalDocs` of the schema section. It seems that any object that follows a field like...

Hi @jhorstmann do you have any benchmark for this? Thx!

Cool! I tried on an M1 and the results are not as good Before: ``` string::bench_to_lowercase 102.00ns/iter +/- 1.00ns ``` After: ``` string::bench_to_lowercase 99.00ns/iter +/- 1.00ns ``` Maybe autovec is...

Sorry, I was testing your solution against my fork that I am working on instead of upstream 🙈 The actual result is Before: ``` string::bench_to_lowercase 45.00ns/iter +/- 0.00ns ``` After:...

A couple of thoughts: - A similar thing is done also here: https://github.com/rust-lang/rust/blob/abb95639ef2b837dbfe7b5d18f51fadda29711cb/library/core/src/slice/ascii.rs#L328-L341 maybe would be nice to somehow merge the two? - Would be interesting to understand why the...