René Kijewski

Results 36 issues of René Kijewski

Lest the diff gets forgotten! :) This change was part of #594, but deferred until the next big release, because it breaks backward compatibility.

I would expect it to work like ```cpp RX_OPTIONAL last_value; uniq(…) { last_value.emplace(input.get()); input.next(); } constexpr void next() { while (!input.at_end()) { auto&& next_value = input.get(); input.next(); if (!eq(*last_value, next_value))...

enhancement
good first issue
version-2.1

* https://github.com/eggert/tz/releases/tag/2022b * https://mm.icann.org/pipermail/tz-announce/2022-August/000071.html Some tests are failing after updating the tz submodule to , because more pre-1970 information was removed. The announcement mentions that you can use `make PACKRATDATA=backzone...

I'm probably missing some simple fact, but should't [`DateTime`](https://docs.rs/tantivy/0.18.0/tantivy/struct.DateTime.html) implement [`FastValue`](https://docs.rs/tantivy/0.18.0/tantivy/fastfield/trait.FastValue.html)? According to the documentation and the API, DateTime is more or less simply a wrapper around i64. Their binary...

`NaiveTime` contains two integer fields, both with a restricted range: - `secs`, the second of the day, is less than 86,400. - `frac` is used for two things. To store...

[Some time ago](https://github.com/strawlab/iana-time-zone/pull/35) I spoke in favor of using [winapi](https://crates.io/crates/winapi) instead of [windows-sys](https://crates.io/crates/windows-sys), because it had fewer msrv bumps, and because it was used by e.g. tokio, and chrono, so...