|
crawlserv++
[under development]
Application for crawling and analyzing textual content of websites.
|
#include <iterator>#include <numeric>

Go to the source code of this file.
Namespaces | |
| crawlservpp::Helper::Container | |
| Namespace for global container helper function templates. | |
Functions | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::append (T &to, const T &from, typename T::size_type startAt, typename T::size_type endAt) |
| Appends (part of) an iterable container to another container. More... | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::append (T &to, const T &from, typename T::size_type startAt) |
| Appends (part of) an iterable container to another iterable container. More... | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::append (T &to, const T &from) |
| Appends an iterable container to another iterable container. More... | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::moveInto (T &to, T &from) |
| Moves the elements of an iterable container into another iterable container. More... | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::moveInto (T &to, T &from, typename T::size_type at) |
| Moves the elements of an iterable container into another iterable container. More... | |
| template<typename T > | |
| static void | crawlservpp::Helper::Container::eraseFirst (T &container, typename T::size_type n) |
| Erases the first elements of an iterable container. More... | |
| template<typename T > | |
| static T::size_type | crawlservpp::Helper::Container::bytes (const T &container) |
| Returns the number of bytes in an iterable container. More... | |