Mo Bitar
Mo Bitar
I thought about it and `any` is complicated and has exponential scaling because you would have to implement the setter of the dependent field for the following configurations for the...
WOW, I did not think about that!
I did think about it for many hours and I do finally have results! Let's look at `any(a, b, c)` to understand the notation that I did use: ``` a...
@idanarye I think that I did close all bugs in my algorithm `groups`. Do you want to try it out? 1. Clone the repo 2. Run `cargo run 'GROUPS'`. For...
I did start explaining the algorithm in the README. I will ping you when it is done. Why would a normalization be needed? My plan was to check for conflicts...
I could remove the conflicts without normalization. But I don't think that the additional performance cost is worth it. I don't see why we should allow writing conflicting rules in...
The documentation is finally done and I did fix some more bugs! I have been working on this algorithm for more than a week :D I did underestimate this issue...
I wrote and documented the algorithm. The license is compatible. I also started a draft PR. I just have to sit down and finish that PR 😅 Sorry, I got...
I tried to get back to it again but it would require some time to get comfortable with the macros again. Therefore, I closed the PR https://github.com/idanarye/rust-typed-builder/pull/96 to not let...
`fs::metadata` traverses symlinks so `is_file` would return true. The weird thing is that not every method returning `Metadata` traverses symlinks. One needs to read its docs. For example, `DirEntry::metadata` does...