#findany
quick demo of Ctrl-A #findany when #gadget is turned on
September 30, 2025 at 4:40 AM
Java stream's terminal operations `findFirst` and `findAny` are neat but one use cases isn't covered: "find the only one" - a terminal operation you'd use after a filter that's supposed to let exaxctly one element pass through.

There's now a JDK preview with that operation, named `highlander`. ⚔️
April 1, 2025 at 9:41 AM
Tu as une collection d'éléments et tu veux le premier ? "trouvePremier". Ah non, pardon, "findFirst".

Tu veux n'importe quel élément ? "trouveNImporte" ("findAny").
June 24, 2024 at 2:35 PM