Changeset 1308 for trunk/yat


Ignore:
Timestamp:
May 15, 2008, 6:09:30 PM (15 years ago)
Author:
Peter
Message:

added and corrected some docs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/statistics/averager_traits.h

    r1306 r1308  
    4747  struct averager_traits<utility::unweighted_iterator_tag>
    4848  {
    49   /**
    50      \see class declaration
    51   */
     49    /**
     50        Metafunction returning Averager
     51    */
    5252    typedef Averager type;
     53    /**
     54        Metafunction returning AveragerPair
     55    */
    5356    typedef AveragerPair pair_type;
    5457  };
     
    6063  struct averager_traits<utility::weighted_iterator_tag>
    6164  {
    62   /**
    63      \see class declaration
    64   */
     65    /**
     66       Metafunction returning AveragerWeighted
     67     */
    6568    typedef AveragerWeighted type;
     69    /**
     70       Metafunction returning AveragerPairWeighted
     71    */
    6672    typedef AveragerPairWeighted pair_type;
    6773  };
     
    9096  {
    9197  /**
    92       Convenience Metafunction taking iterator as argument and return
    93       either Averager (if both iterators are unweighted) or AveragerWeighted
    94       otherwise.
     98      Convenience Metafunction taking two iterators as argument and
     99      return either AveragerPair (if both iterators are unweighted) or
     100      AveragerPairWeighted otherwise.
    95101  */
    96102    typedef typename
Note: See TracChangeset for help on using the changeset viewer.