#include <SortByPointers.h>
|
static auto | make (Coll &coll) |
|
template<typename Coll, typename = void>
struct util::details::PointerVectorMaker< Coll, typename >
Definition at line 127 of file SortByPointers.h.
template<typename Coll , typename = void>
Definition at line 129 of file SortByPointers.h.
133 using pointer_type = decltype(&*
begin(coll));
134 using ptr_coll_t = std::vector<pointer_type>;
136 auto const n = coll.size();
143 std::transform(
begin(coll),
end(coll), std::back_inserter(ptrs),
144 [](
auto& obj){
return &obj; });
end
while True: pbar.update(maxval-len(onlies[E][S])) #print iS, "/", len(onlies[E][S]) found = False for...
decltype(auto) constexpr end(T &&obj)
ADL-aware version of std::end.
decltype(auto) constexpr begin(T &&obj)
ADL-aware version of std::begin.
The documentation for this struct was generated from the following file: