Function template iterator_to_raw_pointer
Aboria::iterator_to_raw_pointer — convert an generic iterator to a raw_pointer
Synopsis
template<typename Iterator> auto iterator_to_raw_pointer(const Iterator & arg);
Description
Parameters: |
arg
|
the actual iterator object to be converted |
|
Template Parameters: |
Iterator
|
the iterator type to be converted. Can be a normal STL iterator or a |
|
Returns: |
decltype(detail::iterator_to_raw_pointer(arg,typename detail::is_zip_iterator<Iterator>::type())) |