| 335 | std::array<double, 4> GeoStatistics::upper_bound() const { return impl_->upper_bound(); } |
| 336 | |
| 337 | std::array<bool, 4> GeoStatistics::dimension_empty() const { |
| 338 | return {impl_->bound_empty(0), impl_->bound_empty(1), impl_->bound_empty(2), |
| 339 | impl_->bound_empty(3)}; |
| 340 | } |
| 341 | |
| 342 | std::array<bool, 4> GeoStatistics::dimension_valid() const { |
| 343 | return {impl_->bound_valid(0), impl_->bound_valid(1), impl_->bound_valid(2), |