diff options
Diffstat (limited to 'src/scope.h')
-rw-r--r-- | src/scope.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scope.h b/src/scope.h index 8323f224..42825606 100644 --- a/src/scope.h +++ b/src/scope.h @@ -182,6 +182,13 @@ public: args.pop_back(); } + value_t::sequence_t::const_iterator begin() const { + return args.begin(); + } + value_t::sequence_t::const_iterator end() const { + return args.end(); + } + std::size_t size() const { return args.size(); } |