Bug 1389844 - P2. Add Intervals::ContainsWithStrictEnd method. r=gerald

MozReview-Commit-ID: JnIgYlmewUw

--HG--
extra : rebase_source : d2cf398da8f7bf33bfb763a6057670df408aa1ae
This commit is contained in:
Jean-Yves Avenard 2017-08-16 19:30:45 +02:00
Родитель cf6931a74f
Коммит a4b8d6b551
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -633,6 +633,16 @@ public:
return false;
}
bool ContainsWithStrictEnd(const ElemType& aInterval) const
{
for (const auto& interval : mIntervals) {
if (interval.ContainsWithStrictEnd(aInterval)) {
return true;
}
}
return false;
}
// Shift all values by aOffset.
SelfType& Shift(const T& aOffset)
{