[C++] pretty_log: 컬렉션 출력 라이브러리

https://github.com/myyrakle/pretty_log

vector, tuple 등의 복합 타입을 편리하게 로깅할 수 있게 만들어본 단순한 라이브러리다.
각각의 to_string을 구현했으며, 이를 통해 ostream에 << 오버로드를 적용해놨다.

그렇다.
그냥 헤더파일만 잘 박아서 쓰면 된다. 소스파일은 따로 없다.

컬렉션 vector, array, deque, list, forward_list, map, multimap, unordered_map, unordered_multimap, set, multiset, unordered_set, unordered_multiset과 pair, tuple 등을 구현해놨다.

raw 배열도 구현해봤으나, char[] 등의 문자배열과 충돌이 발생해 보류해뒀다.
sfinae로 해결해볼 계획이다.

파일스트림에 대한 오버로드도 추가해둘까 한다.
어차피 핵심구현은 to_string에 다 해놨으니.