| 109 | /// \return false if terminated by callback |
| 110 | template <typename BS, typename ...F> |
| 111 | inline auto BitSetParallelForAllRanged( const BS & bs, F &&... f ) |
| 112 | { |
| 113 | return BitSetParallel::ForAllRanged( bs, std::forward<F>( f )... ); |
| 114 | } |
| 115 | |
| 116 | /// executes given function f( bit, subBitRange, tls ) for each bit in IdRange or BitSet (bs) in parallel threads, |
| 117 | /// where subBitRange are the bits that will be processed by the same thread, |
no test coverage detected