Handle empty range insertion

This commit is contained in:
Bruno BELANYI 2024-08-23 22:13:34 +01:00
parent 9d2e062c38
commit b23af215e8
2 changed files with 28 additions and 0 deletions

View file

@ -9,6 +9,8 @@ public:
interval_map(V const& init) : init_(init) {}
void assign(K const& begin, K const& end, V const& val) {
if (!(begin < end))
return;
// TODO: implement
}