MCPcopy Create free account
hub / github.com/boostorg/compute / at

Method at

include/boost/compute/container/vector.hpp:453–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

451 }
452
453 reference at(size_type index)
454 {
455 if(index >= size()){
456 BOOST_THROW_EXCEPTION(std::out_of_range("index out of range"));
457 }
458
459 return operator[](index);
460 }
461
462 const_reference at(size_type index) const
463 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected