We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Currently lots of swift code uses a pattern like this:
myList.filter { [some condition] }.first
A better, more performant way of doing this is as follows:
myList.first(where: { [some condition] })
There should be a rule to enforce this.