21 template <
class ForwardIterator,
class Distance>
25 #if defined(__SUNPRO_CC)
27 std::distance(first,last,n);
29 n = std::distance(first,last);
33 template <
class ForwardIterator>
37 #if defined(__SUNPRO_CC)
39 std::distance(first,last,retVal);
41 retVal = std::distance(first,last);
void coinDistance(ForwardIterator first, ForwardIterator last, Distance &n)
CoinDistance.