Your second example does not work if you send the argument by reference. Did you mean
void copyVecFast(vec<int> original) // no reference { vector<int> new_; new_.swap(original); }
That would work, but an easier way is
vector<int> new_(original);
Related Posts:
- What is the easiest way to initialize a std::vector with hardcoded elements?
- How do I erase an element from std::vector<> by index?
- How do I reverse a C++ vector?
- What’s the most efficient way to erase duplicates and sort a vector?
- Best way to extract a subvector from a vector?
- Appending a vector to a vector
- C++ Erase vector element by value rather than by position?
- How to get current time in milliseconds?
- Why can’t I make a vector of references?
- Displaying contents of a vector container in C++
- How to implement 2D vector array?
- Vector of Vectors to create matrix
- How to find out if an item is present in a std::vector?
- How do I print out the contents of a vector?
- check if a std::vector contains a certain object?
- How to navigate through a vector using iterators? (C++)
- C++ for each, pulling from vector elements
- how to implement quick sort algorithm in C++
- Debug assertion failed. C++ vector subscript out of range
- A proper way to create a matrix in c++
- No matching member function for call to ‘push_back’ error
- Pass a vector by reference C++
- Why there is no pop_front method in C++ std::vector?
- Initializing a two dimensional std::vector
- C++ – No matching member function for call to ‘push_back’
- Debug assertion failed. C++ vector subscript out of range
- Vector is not a Template?
- Displaying a vector of strings in C++
- ‘vector’ in namespace ‘std’ does not have a template type
- push_back vs emplace_back
- C++ error: Undefined symbols for architecture x86_64
- Vector of structs initialization
- Converting a vector
to string - vector
::size_type in C++ - Parsing a comma-delimited std::string
- How to ensure that a std::map is ordered?
- Why use a new call with a C++ ‘vector’?
- Why doesn’t std::vector::push_front() exist?
- C++ delete vector, objects, free memory
- How to iterate over a vector?
- How to access the contents of a vector from a pointer to the vector in C++?
- Insert object at index of vector c++
- How to convert vector to array
- push_back vs emplace_back
- No operator << matches these operands
- Initialize empty vector in structure – c++
- splitting a string into an array in C++ without using vector
- Remove spaces from std::string in C++
- What is the difference between const_iterator and non-const iterator in the C++ STL?
- Remove spaces from std::string in C++
- How to check that an element is in a std::set?
- How to sum up elements of a C++ vector?
- Implementation of Vector in C++
- How to replace all occurrences of a character in string?
- Determine if map contains a value for a key?
- How to initialize a vector of pointers
- Correct way to work with vector of arrays
- C++ error: double free or corruption (fasttop)
- Use the auto keyword in C++ STL
- error C2106: ‘=’ : left operand must be l-value
- I get this error: “glibc detected”
- std::string length() and size() member functions
- How to create a vector of class objects in C++?
- “vector” was not declared in this scope
- sorting in std::map where key is a std::string
- How to do std::string indexof in C++ that returns index of matching string?
- Vector declaration “expected parameter declarator”
- Why is this vector iterator not incrementable?
- C++ equivalent of StringBuffer/StringBuilder?
- Finding square root without using sqrt function?
- What is the size of sizeof(vector)? C++
- List iterator not dereferencable?
- c++ vector bubble sort
- clearing a vector of pointers [duplicate]
- “Cannot allocate an object of abstract type” error
- rand() between 0 and 1
- how to implement Interfaces in C++?
- What exactly is nullptr?
- How to make a SIMPLE C++ Makefile
- finding dll for “The specified module could not be found”
- Is there a decent wait function in C++?
- streambuf::xsgetn and state flags
- C++ table alignment – cout and iomanip
- Is the practice of returning a C++ reference variable evil?
- Why is my HelloWorld function not declared in this scope?
- What is the difference between include_directories and target_include_directories in CMake?
- Undefined reference to constructor
- Passing as const and by reference – Worth it?
- expression did not evaluate to a constant- c++
- Generate SHA256 in c++
- How to check if input is numeric in C++
- C++ Big Integer
- How do I create a random alpha-numeric string in C++?
- Learning to work with audio in C++
- System not declared in scope?
- no debugging symbols found when using gdb
- C++ Array of pointers: delete or delete []?
- DEV C ++ Error: expected declaration before ‘}’ token
- “cannot be used as a function error”
- error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup