| 335 | } |
| 336 | |
| 337 | iterator upper_bound(const key_type &value, command_queue &queue) |
| 338 | { |
| 339 | ::boost::compute::get<0> get_key; |
| 340 | |
| 341 | return ::boost::compute::upper_bound( |
| 342 | ::boost::compute::make_transform_iterator(begin(), get_key), |
| 343 | ::boost::compute::make_transform_iterator(end(), get_key), |
| 344 | value, |
| 345 | queue |
| 346 | ).base(); |
| 347 | } |
| 348 | |
| 349 | iterator upper_bound(const key_type &value) |
| 350 | { |
nothing calls this directly
no test coverage detected