1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

Kernel: Add a Range::intersect(other) helper

This commit is contained in:
Hendiadyoin1 2021-02-26 11:16:03 +01:00 committed by Andreas Kling
parent 7b22fb70a2
commit 7874b89426
2 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -67,6 +68,7 @@ public:
}
Vector<Range, 2> carve(const Range&) const;
Range intersect(const Range&) const;
private:
VirtualAddress m_base;