std::splice splice는 한 list에서 다른 list로 원소들을 옮기는 함수. 원소들은 복사(copy)나 이동(move)되지 않고 포인터 주소만 옮겨 담는다. 파라미터 pos 삽입될 원소 위치 other 콘텐츠를 전송할 다른 컨테이너 it other에서 *this로 전송할 원소 first, last other에서 *this로 전송할 원소의 범위 #include #include std::ostream& operator 프로그래밍/Morden C++ 2021.07.13