Merge pull request #419 from neheb/ranges

add empty method
This commit is contained in:
Arseny Kapoulkine 2021-04-27 23:37:06 -07:00 committed by GitHub
commit 5df537f348
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -312,6 +312,8 @@ namespace pugi
It begin() const { return _begin; }
It end() const { return _end; }
bool empty() const { return _begin == _end; }
private:
It _begin, _end;
};