| 145 | virtual ~SimpleVector() override {} |
| 146 | |
| 147 | SimpleVectorStats<T> getStats() const { |
| 148 | return stats_; |
| 149 | } |
| 150 | |
| 151 | // Concrete Vector types need to implement this themselves. |
| 152 | // This method does not do bounds checking. When the value is null the return |
no outgoing calls