Changeset 1308
- Timestamp:
- May 15, 2008, 6:09:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/averager_traits.h
r1306 r1308 47 47 struct averager_traits<utility::unweighted_iterator_tag> 48 48 { 49 /**50 \see class declaration51 */49 /** 50 Metafunction returning Averager 51 */ 52 52 typedef Averager type; 53 /** 54 Metafunction returning AveragerPair 55 */ 53 56 typedef AveragerPair pair_type; 54 57 }; … … 60 63 struct averager_traits<utility::weighted_iterator_tag> 61 64 { 62 /**63 \see class declaration64 */65 /** 66 Metafunction returning AveragerWeighted 67 */ 65 68 typedef AveragerWeighted type; 69 /** 70 Metafunction returning AveragerPairWeighted 71 */ 66 72 typedef AveragerPairWeighted pair_type; 67 73 }; … … 90 96 { 91 97 /** 92 Convenience Metafunction taking iterator as argument and return93 either Averager (if both iterators are unweighted) or AveragerWeighted94 otherwise.98 Convenience Metafunction taking two iterators as argument and 99 return either AveragerPair (if both iterators are unweighted) or 100 AveragerPairWeighted otherwise. 95 101 */ 96 102 typedef typename
Note: See TracChangeset
for help on using the changeset viewer.