일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- haskell
- async
- Functional
- SHA1
- SHA512
- Android
- program
- Chrono
- template
- ranges
- c++
- go
- stringprintf
- Clojure
- kotlin
- Reflect
- coroutines
- Scala
- web
- CustomTab
- traits
- WebView
- design pattern
- sprintf
- RAII
- Observer
- type_traits
- sha256
- AES
- ChromeTab
- Today
- Total
목록C++ 유틸 (7)
프로그래밍 검색 블로그
아직 ranges가 사용중인 컴파일러에서 컴파일이 불가능해서 만들었다 ranges가 컴파일이 가능한 최신 컴파일러라면 ranges를 사용할 것여기 -> https://github.com/ericniebler/range-v3 1234 template using collection_value_type = typename std::remove_const::type::value_type;cs 함수의 인자로 들어온 collection에서 value_type만 추출 12345678 template inline auto filter(_Collection&& collection, _Func&& predicate) -> std::vector { std::vector destination; filterTo(std::for..
go언어의 defer와 거의 비슷하게 제작하였다. C++에서는 finally를 사용할수 있지만 꼭 finally에 넣을수 없는 상황도 있기 때문에아무 함수나 넣을수 있게 하는 defer를 제작12345678910111213141516171819202122232425262728293031323334#include #include templatestruct Defer{ using value_type = _Func; using const_reference = typename std::add_lvalue_reference::type; value_type defer_function; Defer(const_reference f) : defer_function(f){} Defer(value_type&& f) : de..
std chrono 관련 유틸 제작 12345678910111213141516171819202122232425#include namespace System{ long long currentTimeNanoseconds() { auto time = std::chrono::system_clock::now(); return std::chrono::duration_cast(time.time_since_epoch()).count(); } long long currentTimeMillis() { auto time = std::chrono::system_clock::now(); return std::chrono::duration_cast(time.time_since_epoch()).count(); } long long..
여기서는 %로 받는 형식문자열을 추론해서 알아본다.12345678910template struct is_c_style_string : public false_type{};template struct is_c_style_string : public true_type{};template struct is_c_style_string : public true_type{};template struct is_c_style_string : public true_type{};template struct is_c_style_string : public true_type{};cs 이런 구조체를 추가하여 c_style의 문자열인지 알아낼 수 있도록 한다. 12345678910111213141516171819202122232..
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152#include #include #include templateinline std::ostringstream& operator
스칼라의 Traits C++에서 비슷하게 구현하기 operator()로 구현한다고 했을 때 1. 클래스 기반 구현 12345678910111213141516171819struct Traits{ inline void operator()(){}};templatestruct WorkingA : _Base{ void operator()(){ _Base::operator()(); printf("workingA\n"); }}; templatestruct WorkingB : _Base{ void operator()(){ _Base::operator()(); printf("workingB\n"); }}; Colored by Color Scripterc 1-1. 클래스 기반 구현의 사용 123456789101112int..