| 23 | /// \see all_of(), any_of() |
| 24 | template<class InputIterator, class UnaryPredicate> |
| 25 | inline bool none_of(InputIterator first, |
| 26 | InputIterator last, |
| 27 | UnaryPredicate predicate, |
| 28 | command_queue &queue = system::default_queue()) |
| 29 | { |
| 30 | return ::boost::compute::find_if(first, last, predicate, queue) == last; |
| 31 | } |
| 32 | |
| 33 | } // end compute namespace |
| 34 | } // end boost namespace |