std::copy
2023. 1. 13. 09:08ㆍProgramming/JAVA, C++, Go, Rust
- 목차
반응형
prototpye
template <class InputIt, class OutputIt>
OutputIt copy(InputIt first, InputIt last, OutputIt d_first);
- first: 입력의 첫 번째 요소를 가리키는 반복자
- last: 입력의 마지막 요소를 가리키는 반복자
- d_first: 출력의 첫 번째 요소를 가리키는 반복자
Usage
std::vector<int> input = {1, 2, 3, 4, 5};
std::vector<int> output;
std::copy(input.begin(), input.end(), std::back_inserter(output));
반응형
'Programming > JAVA, C++, Go, Rust' 카테고리의 다른 글
dlopen, floating point exception (0) | 2023.01.25 |
---|---|
unordered_map vs. map (0) | 2023.01.25 |
std::any (0) | 2023.01.08 |
C++: set 사용하기 (0) | 2022.10.08 |
C++ set 사용법 (0) | 2022.10.08 |