전체 글 1301

(C++) variant와 monostate

variant의 첫 번째 타입으로 monostate를 주면 variant 자체에 디폴트 값이 생겨서 디폴트 값을 부여하지 않아도 된다. 예제: #include #include #include struct S { S(int i) : i(i) {} int i; }; int main() { // Without the monostate type this declaration will fail. // This is because S is not default-constructible. std::variant var; assert(var.index() == 0); try { std::get(var); // throws! We need to assign a value } catch(const std::bad_vari..

Programming 2023.09.07

Continuations in Common Lisp. An introductory guide, using the… | by Ashok Khanna | Medium

Continuations in Common Lisp. An introductory guide, using the… | by Ashok Khanna | Medium Continuations in Common Lisp An introductory guide, using the continuation-passing macros of Paul Graham’s On Lisp ashok-khanna.medium.com Continuations in Common Lisp An introductory guide, using the continuation-passing macros of Paul Graham’s On Lisp Ashok Khanna · Follow 7 min read · Aug 17, 2021 62 Co..

Programming 2023.09.07

[종합] '간편'한 게임으로 '적자탈출' 노리는 넷마블 : 네이버 포스트

[종합] '간편'한 게임으로 '적자탈출' 노리는 넷마블 : 네이버 포스트 - https://m.post.naver.com/viewer/postView.naver?volumeNo=36028481&memberNo=24985926&vType=VERTICAL [종합] '간편'한 게임으로 '적자탈출' 노리는 넷마블[BY 디스이즈게임] 7월부터 9월까지 순차 출시되는 신작 3종으로 반등을 노린다. 1일, 넷마블이 구로구 ...m.post.naver.com

Computer Game 2023.08.21

[c++]리스트 sort 하는 방법 (tistory.com)

[c++]리스트 sort 하는 방법 (tistory.com) [c++]리스트 sort 하는 방법 C++ #include #include int main() { std::list lst; lst.push_back(5); lst.push_back(1); std::sort(lst.begin(), lst.end()); return 0; } 당연하다는 듯이 이런 코드를 작성한 적이 있는데 sort 부분에서 에러가 뜬다. 이유는 아래와 blossoming-man.tistory.com C++ #include #include int main() { std::list lst; lst.push_back(5); lst.push_back(1); std::sort(lst.begin(), lst.end()); return 0; ..

Programming 2023.08.20

치마입는 남자 그리고 팁

https://m.dcinside.com/board/yjrs/2628545 치마입는 남자 그리고 팁 - 여장 갤러리난 치마 입는 남자 중 한명이고, 치마 입은 남자 A to Z 를 나열한다.1. 남자가 치마/원피스를 입었다는 이유로 보이면 널고소할거야~ 빼액~- 어디 해봐라, 그리고 전에도 말했듯이 남자가 치마 입gall.dcinside.com 치마입는 남자 그리고 팁 Skirtma..(118.235)2023.01.23 01:36 조회수 1123추천 8댓글 4 난 치마 입는 남자 중 한명이고, 치마 입은 남자 A to Z 를 나열한다. 1. 남자가 치마/원피스를 입었다는 이유로 보이면 널고소할거야~ 빼액~ - 어디 해봐라, 그리고 전에도 말했듯이 남자가 치마 입으면 안된다는 법 내용을 (어느 법 몇 항에..

남자 치마 2023.08.11