std::list::splice
한 목록에서 다른 목록으로 요소를 전송합니다. 요소는 복사 (copy) 되거나 이동(move) 되지 않으며, 목록 내의 포인터만 다시 연결될 뿐입니다. void splice( const_iterator pos, list& other ); void splice( const_iterator pos, list&& other ); // C++11부터 void splice( const_iterator pos, list& other, const_iterator it ); void splice( const_iterator pos, list&& other, const_iterator it ); // C++11 부터 void splice( const_iterator pos, list& other, const_iterat..