mirror of https://github.com/CGAL/cgal
Merge pull request #7752 from gdamiand/CMap_with_index-add_missing_functions-gdamiand
Add missing functions capacity and upper bound in dart_range for cmap and lcc with index
This commit is contained in:
commit
0bf60c9318
|
|
@ -148,6 +148,10 @@ namespace CGAL {
|
|||
{ return mmap.mdarts.is_used(i); }
|
||||
bool owns(size_type i) const
|
||||
{ return mmap.mdarts.owns(i); }
|
||||
size_type capacity() const
|
||||
{ return mmap.mdarts.capacity(); }
|
||||
size_type upper_bound() const
|
||||
{ return mmap.mdarts.upper_bound(); }
|
||||
private:
|
||||
Self & mmap;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -169,6 +169,10 @@ namespace CGAL {
|
|||
{ return mmap.mdarts.is_used(i); }
|
||||
bool owns(size_type i) const
|
||||
{ return mmap.mdarts.owns(i); }
|
||||
size_type capacity() const
|
||||
{ return mmap.mdarts.capacity(); }
|
||||
size_type upper_bound() const
|
||||
{ return mmap.mdarts.upper_bound(); }
|
||||
private:
|
||||
Self & mmap;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue