Recent posts

[C++] exchange

less than 1 minute read

November 30 2022

개요 정의 template< class T, class U = T > T exchange( T& obj, U&& new_value ); obj의 값을 new_value로 변경하고 obj의 값을 반환

[C++] minmax_element

less than 1 minute read

November 30 2022

개요 범위에서 가장 작은 값과 가장 큰 값을 반환

[C++] to_array

less than 1 minute read

November 29 2022

개요 array를 생성

[C++] minmax

less than 1 minute read

November 29 2022

개요 주어진 값 중 가장 작은 값과 가장 큰 값을 반환

[C++] feature testing

less than 1 minute read

November 28 2022

개요 reference C++11 이상에 도입된 C++ 언어 및 라이브러리 기능에 해당하는 일련의 전처리기 매크로를 정의 attributes __has_cpp_attribute( attribute-token ) attribute에 대한 컴...