Page MenuHomeDevCentral

BaseCollection::first now returns an Option
ClosedPublic

Authored by dereckson on Nov 7 2025, 01:30.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Feb 3, 08:56
Unknown Object (File)
Tue, Feb 3, 08:39
Unknown Object (File)
Mon, Feb 2, 11:01
Unknown Object (File)
Sat, Jan 31, 13:12
Unknown Object (File)
Thu, Jan 29, 16:22
Unknown Object (File)
Tue, Jan 27, 09:31
Unknown Object (File)
Tue, Jan 27, 07:11
Unknown Object (File)
Mon, Jan 26, 18:50
Subscribers
None

Details

Summary

Previous behavior: return first item or throw an option on empty collection
Current behavior: similar to Rust, return Some(first item) or None

The behavior of BaseCollection::firstOr is not changed, with eager loading.
For lazy loading, we can now use $collection->first()->getValueOrElse().

Test Plan
  • Unit tests have been updated
  • No-op for Zed code (it uses firstOr)

Diff Detail

Repository
rKERUALD Keruald libraries development repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable