Hydra  4.0.1
A header-only templated C++ framework to perform data analysis on massively parallel platforms.
Sort.inl File Reference
#include <hydra/detail/Config.h>
#include <hydra/detail/BackendPolicy.h>
#include <utility>
#include <hydra/detail/external/hydra_thrust/sort.h>
#include <hydra/Range.h>
Include dependency graph for Sort.inl:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 hydra
 Generic policies definition.
 

Macros

#define SORT_INL_
 

Functions

template<typename Iterable , typename Iterator = decltype(std::declval<Iterable>().begin())>
std::enable_if< hydra::detail::is_iterable< Iterable >::value, Range< decltype(std::declval< Iterable & >).begin())> >::type hydra::sort (Iterable &iterable)
 
template<typename Iterable , typename Functor , typename Iterator = decltype(std::declval<Iterable>().begin())>
std::enable_if< hydra::detail::is_iterable< Iterable >::value, Range< decltype(std::declval< Iterable & >).begin())> >::type hydra::sort (Iterable &iterable, Functor const &comparator)
 
template<typename Iterable , typename Iterable_Key , typename Iterator = decltype(std::declval<Iterable>().begin()), typename Iterator_Key = decltype(std::declval<Iterable_Key>().begin()), typename Value_Key = decltype(*std::declval<Iterator_Key>().begin())>
std::enable_if< hydra::detail::is_iterable< Iterable >::value, Range< decltype(std::declval< Iterable & >).begin())> >::type hydra::sort_by_key (Iterable &iterable, Iterable_Key &keys)
 
template<typename Iterable , typename Iterator_Key , typename Functor , typename Iterator = decltype(std::declval<Iterable>().begin()), typename Value_Key = decltype(*std::declval<Range<Iterator_Key,Functor>>().begin())>
std::enable_if< hydra::detail::is_iterable< Iterable >::value, Range< decltype(std::declval< Iterable & >).begin())> >::type hydra::sort_by_key (Iterable &iterable, Range< Iterator_Key, Functor > keys)
 

Macro Definition Documentation

◆ SORT_INL_

#define SORT_INL_