コード例 #1
0
 public Aggregate <T, NumericRange, TZ> NumericHistogram <TZ>(Expression <Func <T, double> > property, NumericBreaks breaks, TZ child)
 {
     return(new NumericHistogramAggregate <T, TZ>(Property <double> .Create(property), breaks, child));
 }
コード例 #2
0
 internal NumericHistogramAggregate(Property property, NumericBreaks numericBreaks, TZ child)
 {
     Property      = property;
     NumericBreaks = numericBreaks;
     Child         = child;
 }