12 #ifndef __stir_min_positive_element_h_ 13 #define __stir_min_positive_element_h_ 43 template <
typename ForwardIter_t>
48 while (start != end && *start <= 0)
54 ForwardIter_t result = start;
55 while (++start != end)
56 if (!(*start <= 0) && *start < *result)
ForwardIter_t min_positive_element(ForwardIter_t start, ForwardIter_t end)
Finds where the smallest strictly positive element occurs.
Definition: min_positive_element.h:45
basic configuration include file