RFR: 8241187: ToolBox::grep should allow for negative filtering [v4]

Florent Guillaume github.com+592810+efge at openjdk.java.net
Tue May 11 12:38:11 UTC 2021


On Tue, 11 May 2021 10:49:53 GMT, Florent Guillaume <github.com+592810+efge at openjdk.org> wrote:

>> Guoxiong Li has updated the pull request incrementally with one additional commit since the last revision:
>> 
>>   Revise comments. Adjust parameter. Clean code.
>
> test/langtools/tools/lib/toolbox/ToolBox.java line 210:
> 
>> 208:     public List<String> grep(Pattern pattern, List<String> lines, boolean match) {
>> 209:         return lines.stream()
>> 210:                 .filter(s -> match ? pattern.matcher(s).find() : !pattern.matcher(s).find())
> 
> `s -> pattern.matcher(s).find() ^ !match` would avoid repeating the expression

Or probably even simpler `s -> pattern.matcher(s).find() == match`

-------------

PR: https://git.openjdk.java.net/jdk/pull/1934


More information about the compiler-dev mailing list