jj/lib
Yuya Nishihara a81ebeb85e revset: add empty() predicate to find commits with no file change
The expression 'x ~ empty()' is identical to 'x & file(".")', but more
intuitive.

Note that 'x ~ empty()' is slower than 'x & file(".")' since the negative
intersection isn't optimized right now. I think that can be handled as
follows: 'x ~ filter(f)' -> 'x & filter(!f)' -> 'filter(!f, x)'
2022-11-16 08:50:33 +09:00
..
src revset: add empty() predicate to find commits with no file change 2022-11-16 08:50:33 +09:00
tests revset: add empty() predicate to find commits with no file change 2022-11-16 08:50:33 +09:00
testutils backend: rename NormalFile to just File 2022-11-14 23:36:43 -08:00
build.rs cleanup: remove extern crate declarations 2022-09-21 22:24:09 -07:00
Cargo.toml cargo: bump insta from 1.21.0 to 1.21.1 2022-11-15 08:47:56 -08:00