This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
2.0
Several changes and bug fixes, including:
- Breaking change:
coveo::enumerable
now supports returning non-const references. This means that acoveo::enumerable<int>
returns references to non-const ints. To return references to const objects, use something likecoveo::enumerable<const int>
. - Optimized
skip()
andtake()
, including support forfast_size
when possible. - Breaking change: several operators now return values instead of references to avoid dangling references. This includes
min()
,max()
,first()
, etc.