]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxalgo.h
remove !NEW_INSETS cruft
[lyx.git] / src / support / lyxalgo.h
index 79799011060d5443ed897867fda58e5b3d7eeae0..2d8d49f06c943b3bf615987e90238e8a987803e2 100644 (file)
@@ -3,10 +3,10 @@
 #ifndef LYX_ALGO_H
 #define LYX_ALGO_H
 
-// Both these functions should ideally be placed into namespace lyx.
-// Also the using std::less should not be used.
+#include <utility>
+
+namespace lyx {
 
-//namespace lyx {
 
 /// Returns true if the sequence first,last is sorted, false if not.
 template <class For>
@@ -20,6 +20,7 @@ bool sorted(For first, For last)
        return true;
 }
 
+
 /// Cmp is the same Cmp as you would pass to std::sort.
 template <class For, class Cmp>
 bool sorted(For first, For last, Cmp cmp)
@@ -32,5 +33,26 @@ bool sorted(For first, For last, Cmp cmp)
        return true;
 }
 
-// }  // end of namespace lyx
+
+struct firster {
+       template <class P1, class P2>
+       P1 operator()(std::pair<P1, P2> const & p) {
+               return p.first;
+       }
+};
+
+
+template <class InputIter, class OutputIter, class Func>
+OutputIter copy_if(InputIter first, InputIter last,
+              OutputIter result, Func func) 
+{
+       for (; first != last; ++first) {
+               if (func(*first)) {
+                       *result++ = *first;
+               }
+       }
+       return result;
+}
+
+}  // end of namespace lyx
 #endif