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)); }
internal NumericHistogramAggregate(Property property, NumericBreaks numericBreaks, TZ child) { Property = property; NumericBreaks = numericBreaks; Child = child; }