diff --git a/doc/counting_iterator.html b/doc/counting_iterator.html index eb218e3..305714f 100644 --- a/doc/counting_iterator.html +++ b/doc/counting_iterator.html @@ -97,8 +97,7 @@ type. Otherwise difference_typenumeric_limits<Incrementable>::is_specialized, then iterator_category is a type convertible to random_access_iterator_tag. Otherwise, iterator_category is -unspecified, and the counting_iterator specialization models the -same iterator traversal concepts modeled by Incrementable.
+unspecified.Specializations of counting_iterator model Readable Lvalue Iterator. In addition, they model the concepts corresponding to the -iterator tags to which their iterator_category is convertible and -also corresponding to CategoryOrTraversal when -CategoryOrTraversal is an iterator tag (and not use_default).
+iterator tags to which their iterator_category is convertible. +Also, if CategoryOrTraversal is not use_default then +counting_iterator models the concept corresponding to the iterator +tag CategoryOrTraversal. Otherwise, if +numeric_limits<Incrementable>::is_specialized, then +counting_iterator models Random Access Traversal Iterator. +Otherwise, counting_iterator models the same iterator traversal +concepts modeled by Incrementable.