aboutsummaryrefslogtreecommitdiff
path: root/libbutl/prefix-map.mxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/prefix-map.mxx')
-rw-r--r--libbutl/prefix-map.mxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/libbutl/prefix-map.mxx b/libbutl/prefix-map.mxx
index 75931da..634b8da 100644
--- a/libbutl/prefix-map.mxx
+++ b/libbutl/prefix-map.mxx
@@ -149,6 +149,18 @@ LIBBUTL_MODEXPORT namespace butl
const_iterator
find_sup (const key_type&) const;
+
+
+ // As above but additionally evaluate a predicate on each matching entry
+ // returning the one for which it returns true.
+ //
+ template <typename P>
+ iterator
+ find_sup_if (const key_type&, P);
+
+ template <typename P>
+ const_iterator
+ find_sup_if (const key_type&, P) const;
};
template <typename M, typename prefix_map_common<M>::delimiter_type D>