Helios Engine 0.1.0
A modular ECS based data-oriented C++23 game engine
 
Loading...
Searching...
No Matches
helios::utils::FilterAdapter< Iter, Pred > Member List

This is the complete list of members for helios::utils::FilterAdapter< Iter, Pred >, including all inherited members.

All(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
Any(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
begin() const noexcept(std::is_nothrow_copy_constructible_v< FilterAdapter >)helios::utils::FilterAdapter< Iter, Pred >inline
Chain(OtherIter begin, OtherIter end) const noexcept(noexcept(ChainAdapter< FilterAdapter< Iter, Pred >, OtherIter >(GetDerived().begin(), GetDerived().end(), std::move(begin), std::move(end))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Chain(R &range) const noexcept(noexcept(ChainAdapterFromRange(GetDerived(), range)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Chain(const R &range) const noexcept(noexcept(ChainAdapterFromRange(GetDerived(), range)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Collect() consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
CountIf(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
difference_type typedefhelios::utils::FilterAdapter< Iter, Pred >
end() const noexcept(std::is_nothrow_constructible_v< FilterAdapter, const Iter &, const Iter &, const Pred & >)helios::utils::FilterAdapter< Iter, Pred >inline
Enumerate() const noexcept(noexcept(EnumerateAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end())))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Filter(Pred predicate) const noexcept(noexcept(FilterAdapter< FilterAdapter< Iter, Pred >, Pred >(GetDerived().begin(), GetDerived().end(), std::move(predicate))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
FilterAdapter(Iter begin, Iter end, Pred predicate) noexcept(std::is_nothrow_copy_constructible_v< Iter > &&std::is_nothrow_move_constructible_v< Iter > &&std::is_nothrow_move_constructible_v< Pred > &&noexcept(AdvanceToValid()))helios::utils::FilterAdapter< Iter, Pred >inline
FilterAdapter(const FilterAdapter &) noexcept(std::is_nothrow_copy_constructible_v< Iter > &&std::is_nothrow_copy_constructible_v< Pred >)=defaulthelios::utils::FilterAdapter< Iter, Pred >
FilterAdapter(FilterAdapter &&) noexcept(std::is_nothrow_move_constructible_v< Iter > &&std::is_nothrow_move_constructible_v< Pred >)=defaulthelios::utils::FilterAdapter< Iter, Pred >
Find(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
Fold(T init, const Folder &folder) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
ForEach(const Action &action) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
GetDerived() noexcepthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inlineprotected
GetDerived() const noexcepthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inlineprotected
GroupBy(const KeyFunc &key_func) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
Inspect(Func inspector) const noexcept(noexcept(InspectAdapter< FilterAdapter< Iter, Pred >, Func >(GetDerived().begin(), GetDerived().end(), std::move(inspector))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Into(OutIt out) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
IsAtEnd() const noexcept(noexcept(std::declval< const Iter & >()==std::declval< const Iter & >()))helios::utils::FilterAdapter< Iter, Pred >inline
iterator_category typedefhelios::utils::FilterAdapter< Iter, Pred >
Map(Func transform) const noexcept(noexcept(MapAdapter< FilterAdapter< Iter, Pred >, Func >(GetDerived().begin(), GetDerived().end(), std::move(transform))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
MaxBy(const KeyFunc &key_func) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
MinBy(const KeyFunc &key_func) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
None(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
operator!=(const FilterAdapter &other) const noexcept(noexcept(std::declval< const FilterAdapter & >()==std::declval< const FilterAdapter & >()))helios::utils::FilterAdapter< Iter, Pred >inline
operator*() const noexcept(noexcept(*std::declval< const Iter & >()))helios::utils::FilterAdapter< Iter, Pred >inline
operator++() noexcept(noexcept(++std::declval< Iter & >()) &&noexcept(AdvanceToValid()))helios::utils::FilterAdapter< Iter, Pred >
operator++(int) noexcept(std::is_nothrow_copy_constructible_v< FilterAdapter > &&noexcept(++std::declval< FilterAdapter & >()))helios::utils::FilterAdapter< Iter, Pred >
operator=(const FilterAdapter &) noexcept(std::is_nothrow_copy_assignable_v< Iter > &&std::is_nothrow_copy_assignable_v< Pred >)=defaulthelios::utils::FilterAdapter< Iter, Pred >
operator=(FilterAdapter &&) noexcept(std::is_nothrow_move_assignable_v< Iter > &&std::is_nothrow_move_assignable_v< Pred >)=defaulthelios::utils::FilterAdapter< Iter, Pred >
operator==(const FilterAdapter &other) const noexcept(noexcept(std::declval< const Iter & >()==std::declval< const Iter & >()))helios::utils::FilterAdapter< Iter, Pred >inline
Partition(const Pred &predicate) consthelios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >
pointer typedefhelios::utils::FilterAdapter< Iter, Pred >
reference typedefhelios::utils::FilterAdapter< Iter, Pred >
Reverse() const noexcept(noexcept(ReverseAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end())))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Skip(size_t count) const noexcept(noexcept(SkipAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end(), count)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
SkipWhile(Pred predicate) const noexcept(noexcept(SkipWhileAdapter< FilterAdapter< Iter, Pred >, Pred >(GetDerived().begin(), GetDerived().end(), std::move(predicate))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Slide(size_t window_size) const noexcept(noexcept(SlideAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end(), window_size)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
StepBy(size_t step) const noexcept(noexcept(StepByAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end(), step)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Stride(size_t stride) const noexcept(noexcept(StrideAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end(), stride)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Take(size_t count) const noexcept(noexcept(TakeAdapter< FilterAdapter< Iter, Pred > >(GetDerived().begin(), GetDerived().end(), count)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
TakeWhile(Pred predicate) const noexcept(noexcept(TakeWhileAdapter< FilterAdapter< Iter, Pred >, Pred >(GetDerived().begin(), GetDerived().end(), std::move(predicate))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
value_type typedefhelios::utils::FilterAdapter< Iter, Pred >
Zip(OtherIter begin, OtherIter end) const noexcept(noexcept(ZipAdapter< FilterAdapter< Iter, Pred >, OtherIter >(GetDerived().begin(), GetDerived().end(), std::move(begin), std::move(end))))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Zip(R &range) const noexcept(noexcept(ZipAdapterFromRange(GetDerived(), range)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
Zip(const R &range) const noexcept(noexcept(ZipAdapterFromRange(GetDerived(), range)))helios::utils::FunctionalAdapterBase< FilterAdapter< Iter, Pred > >inline
~FilterAdapter() noexcept(std::is_nothrow_destructible_v< Iter > &&std::is_nothrow_destructible_v< Pred >)=defaulthelios::utils::FilterAdapter< Iter, Pred >