From 7798de1382641bacd095a5bc55daea35a4cef5b1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 27 Jun 2001 23:32:12 +0000 Subject: [PATCH] * Move stuff around a bit. * Add reduce_apply_bool llvm-svn: 88 --- llvm/include/llvm/Tools/STLExtras.h | 91 +++++++++++++++++------------ 1 file changed, 55 insertions(+), 36 deletions(-) diff --git a/llvm/include/llvm/Tools/STLExtras.h b/llvm/include/llvm/Tools/STLExtras.h index 39bfb4000f12..d7f8320d4cc5 100644 --- a/llvm/include/llvm/Tools/STLExtras.h +++ b/llvm/include/llvm/Tools/STLExtras.h @@ -12,6 +12,37 @@ #include +//===----------------------------------------------------------------------===// +// Extra additions to +//===----------------------------------------------------------------------===// + +// bind_obj - Often times you want to apply the member function of an object +// as a unary functor. This macro is shorthand that makes it happen less +// verbosely. +// +// Example: +// struct Summer { void accumulate(int x); } +// vector Numbers; +// Summer MyS; +// for_each(Numbers.begin(), Numbers.end(), +// bind_obj(&MyS, &Summer::accumulate)); +// +// TODO: When I get lots of extra time, convert this from an evil macro +// +#define bind_obj(OBJ, METHOD) std::bind1st(std::mem_fun(METHOD), OBJ) + + +// bitwise_or - This is a simple functor that applys operator| on its two +// arguments to get a boolean result. +// +template +struct bitwise_or : public binary_function { + bool operator()(const Ty& left, const Ty& right) const { + return left | right; + } +}; + + //===----------------------------------------------------------------------===// // Extra additions to //===----------------------------------------------------------------------===// @@ -102,11 +133,22 @@ inline mapped_iterator map_iterator(const ItTy &I, FuncTy F) { } - //===----------------------------------------------------------------------===// // Extra additions to //===----------------------------------------------------------------------===// +// apply_until - Apply a functor to a sequence continually, unless the +// functor returns true. Return true if the functor returned true, return false +// if the functor never returned true. +// +template +bool apply_until(InputIt First, InputIt Last, Function Func) { + for ( ; First != Last; ++First) + if (Func(*First)) return true; + return false; +} + + // reduce - Reduce a sequence values into a single value, given an initial // value and an operator. // @@ -123,8 +165,8 @@ ValueType reduce(InputIt First, InputIt Last, Function Func, ValueType Value) { // sequence, given an initial value, an operator, a function, and a sequence. // template -ValueType reduce_apply(InputIt First, InputIt Last, Function Func, - ValueType Value, TransFunc XForm) { +inline ValueType reduce_apply(InputIt First, InputIt Last, Function Func, + ValueType Value, TransFunc XForm) { for ( ; First != Last; ++First) Value = Func(XForm(*First), Value); return Value; @@ -136,44 +178,21 @@ ValueType reduce_apply(InputIt First, InputIt Last, Function Func, // sequence, given an initial value, an operator, a function, and a sequence. // template -ValueType reduce_apply2(InputIt First, InputIt Last, Function Func, - ValueType Value, TransFunc XForm) { - return reduce(map_iterator(First, XForm), - map_iterator(Last, XForm), +inline ValueType reduce_apply2(InputIt First, InputIt Last, Function Func, + ValueType Value, TransFunc XForm) { + return reduce(map_iterator(First, XForm), map_iterator(Last, XForm), Func, Value); } #endif - -//===----------------------------------------------------------------------===// -// Extra additions to -//===----------------------------------------------------------------------===// - -// bind_obj - Often times you want to apply the member function of an object -// as a unary functor. This macro is shorthand that makes it happen less -// verbosely. +// reduce_apply_bool - Reduce the result of applying a (bool returning) function +// to each value in a sequence. All of the bools returned by the mapped +// function are bitwise or'd together, and the result is returned. // -// Example: -// struct Summer { void accumulate(int x); } -// vector Numbers; -// Summer MyS; -// for_each(Numbers.begin(), Numbers.end(), -// bind_obj(&MyS, &Summer::accumulate)); -// -// TODO: When I get lots of extra time, convert this from an evil macro -// -#define bind_obj(OBJ, METHOD) std::bind1st(std::mem_fun(METHOD), OBJ) - - -// bitwise_or - This is a simple functor that applys operator| on its two -// arguments to get a boolean result. -// -template -struct bitwise_or : public binary_function { - bool operator()(const Ty& left, const Ty& right) const { - return left | right; - } -}; +template +inline bool reduce_apply_bool(InputIt First, InputIt Last, Function Func) { + return reduce_apply(First, Last, bitwise_or(), false, Func); +} #endif