зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1389844 - P2. Add Intervals::ContainsWithStrictEnd method. r=gerald
MozReview-Commit-ID: JnIgYlmewUw --HG-- extra : rebase_source : d2cf398da8f7bf33bfb763a6057670df408aa1ae
This commit is contained in:
Родитель
cf6931a74f
Коммит
a4b8d6b551
|
@ -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)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче