diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2014-09-19 12:48:50 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2014-09-19 12:48:50 -0400 |
commit | 72e3da15f40e9fff5297f5134676063397035423 (patch) | |
tree | 78f771da235d5f68e0e861bbcd94657380d13457 /gnuradio-runtime/include/gnuradio/buffer.h | |
parent | 9c4b9fc8af447edb8ad786a9a629e583476c2a3a (diff) |
runtime: speed up all the things
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/buffer.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/buffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-runtime/include/gnuradio/buffer.h b/gnuradio-runtime/include/gnuradio/buffer.h index 305e778720..c0c9f3d39d 100644 --- a/gnuradio-runtime/include/gnuradio/buffer.h +++ b/gnuradio-runtime/include/gnuradio/buffer.h @@ -127,6 +127,8 @@ namespace gr { std::multimap<uint64_t,tag_t>::iterator get_tags_begin() { return d_item_tags.begin(); } std::multimap<uint64_t,tag_t>::iterator get_tags_end() { return d_item_tags.end(); } + std::multimap<uint64_t,tag_t>::iterator get_tags_lower_bound(uint64_t x) { return d_item_tags.lower_bound(x); } + std::multimap<uint64_t,tag_t>::iterator get_tags_upper_bound(uint64_t x) { return d_item_tags.upper_bound(x); } // ------------------------------------------------------------------------- |