MCPcopy Create free account
hub / github.com/OpenKinect/libfreenect2 / vector

Function vector

include/internal/CL/cl.hpp:759–765  ·  view source on GitHub ↗

! \brief Constructs with a value copied from another. * * \param vec the vector to copy. */

Source from the content-addressed store, hash-verified

757 * \param vec the vector to copy.
758 */
759 vector(const vector<T, N>& vec) :
760 size_(vec.size_)
761 {
762 if (size_ != 0) {
763 assign(vec.begin(), vec.end());
764 }
765 }
766
767 /*! \brief Constructs with a specified number of initial elements.
768 *

Callers 1

cl.hppFile · 0.85

Calls 4

assignFunction · 0.85
push_backFunction · 0.85
beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected