mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
refs #290 using a CRange of iterator adaptors to return from the primary predicate-based methods of CRangeBase without copying elements
This commit is contained in:
@@ -45,8 +45,8 @@ namespace BlackMisc
|
||||
/*!
|
||||
* \brief Base class for CCollection and CSequence adding mutating operations and CValueObject facility on top of CRangeBase.
|
||||
*/
|
||||
template <template <class> class C, class T>
|
||||
class CContainerBase : public CValueObject, public CRangeBase<C<T>, T>
|
||||
template <template <class> class C, class T, class CIt>
|
||||
class CContainerBase : public CValueObject, public CRangeBase<C<T>, CIt>
|
||||
{
|
||||
public:
|
||||
/*!
|
||||
|
||||
Reference in New Issue
Block a user