| 295 | } |
| 296 | |
| 297 | iterator lower_bound(const key_type &value, command_queue &queue) |
| 298 | { |
| 299 | ::boost::compute::get<0> get_key; |
| 300 | |
| 301 | return ::boost::compute::lower_bound( |
| 302 | ::boost::compute::make_transform_iterator(begin(), get_key), |
| 303 | ::boost::compute::make_transform_iterator(end(), get_key), |
| 304 | value, |
| 305 | queue |
| 306 | ).base(); |
| 307 | } |
| 308 | |
| 309 | iterator lower_bound(const key_type &value) |
| 310 | { |
nothing calls this directly
no test coverage detected