Skip to content

Commit bcc2970

Browse files
committed
doc
1 parent 04b29ef commit bcc2970

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,4 +356,12 @@ var_dump(Finder::rows(
356356
$data,
357357
static fn($datum, $key): bool => $datum > 6 && $key > 1
358358
)); // [8, 9]
359+
360+
361+
// WITH gather only limited found data
362+
$data = [1, 2];
363+
var_dump(Finder::rows(
364+
$data,
365+
static fn($datum): bool => $datum >= 0
366+
)); // [1]
359367
```

0 commit comments

Comments
 (0)