Barak Ugav

Results 18 comments of Barak Ugav

That is the intention. java.util.Comparator define 5 'comparing' static functions: ```java static Comparator comparing(Function keyExtractor); static Comparator comparing(Function keyExtractor, Comparator keyComparator); static Comparator comparingInt(ToIntFunction keyExtractor); static Comparator comparingLong(ToLongFunction keyExtractor); static...

The current implementation does not include the castling right for exmaple, or en passant value

@vigna Renamed `comparingObj` to `comparing` and added a few tests

would love to see progress on this issue

Any update on this issue?

It depends on what API do you want to expose. I expect the `built` crate to tell me the features enabled **in my crate**, and not features in my dependencies....

No, but here is a toy example: ```toml # Cargo.toml [package] name = "temp" version = "0.1.0" edition = "2021" [dependencies] pyo3 = { version = "0.23", features = ["auto-initialize"],...

I think it is useful in many use cases, take for example mine: I have a multi threaded system with threads communicating using crossbeam channels. When a thread wants to...