(dim: DimensionLoose)
| 796 | } |
| 797 | |
| 798 | getSum(dim: DimensionLoose): number { |
| 799 | return this._store.getSum(this._getStoreDimIndex(dim)); |
| 800 | } |
| 801 | |
| 802 | getMedian(dim: DimensionLoose): number { |
| 803 | return this._store.getMedian(this._getStoreDimIndex(dim)); |
nothing calls this directly
no test coverage detected