일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CustomTab
- AES
- ranges
- web
- Functional
- go
- traits
- design pattern
- SHA1
- stringprintf
- Android
- template
- RAII
- sprintf
- Reflect
- type_traits
- program
- SHA512
- WebView
- Scala
- haskell
- sha256
- c++
- Chrono
- kotlin
- Clojure
- async
- ChromeTab
- coroutines
- Observer
- Today
- Total
목록template (30)
프로그래밍 검색 블로그
C++ 의 ranges lisp 의 함수형 프로그래밍과 유사한 방식의 api로 함수형 프로그래밍과 기존 cpp 기능 추가에 도움을 준다. https://github.com/ericniebler/range-v3 템플릿 라이브러리이기 때문에 그냥 헤더파일만 전부 복사해도 무방하다 1234567891011 #include #include #include using namespace std;using namespace ranges;int main(){ vector v = {1,2,3,4,5}; cout
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..
12345678910111213141516171819202122232425262728293031323334 //bool is_prime(unsigned long long v){// for(unsigned long long i = 2; i
123456789101112templatestruct fibonacci{ static const unsigned long long value = fibonacci::value + fibonacci::value;};templatestruct fibonacci{ static const unsigned long long value = 1LL;};templatestruct fibonacci{ static const unsigned long long value = 0LL;};Colored by Color Scriptercs 테스트1234567891011121314#include using namespace std;int main(){ cout
최대공약수 12345678templatestruct gcd{ static const unsigned long long value = gcd::value;};templatestruct gcd{ static const unsigned long long value = L;};Colored by Color Scriptercs 최소공배수12345templatestruct lcm{ static const unsigned long long value = (L * R) / gcd::value;}; Colored by Color Scriptercs 테스트123456#include using namespace std;int main(){ cout
123456789101112templatestruct binary{ static const unsigned long long value = binary::value + 2 * binary::value;};templatestruct binary{ static const unsigned long long value = 1;};templatestruct binary{ static const unsigned long long value = 0;};Colored by Color Scriptercs 테스트 123456789101112131415161718#include using namespace std;int main(){ cout
123456789templatestruct factorial{ static const unsigned long long value = N * factorial::value;};templatestruct factorial{ static const unsigned long long value = 1;}; Colored by Color Scriptercs 테스트1234567891011121314#include using namespace std;int main(){ cout
이전에 만든blocking_channel을 사용http://psbs.tistory.com/11 만들긴 했지만 반환되는 std::future를 굳이 받을 필요가 없다는 점을 제외하면 대부분의 경우에는 std::async 로 더 간단하게 할 수 있어서 실제로 쓸일은 없을듯 하다.123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 #include #include ..
여기서는 %로 받는 형식문자열을 추론해서 알아본다.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..