! Returns whether all data points of \a other are also contained inside this data range. \see intersects */
| 2337 | \see intersects |
| 2338 | */ |
| 2339 | bool QCPDataRange::contains(const QCPDataRange &other) const |
| 2340 | { |
| 2341 | return mBegin <= other.mBegin && mEnd >= other.mEnd; |
| 2342 | } |
| 2343 | |
| 2344 | |
| 2345 |
no test coverage detected