2014-05-09から1日間の記事一覧

Programming: Principles and Practice Using C++の第2版が出ます

C++

Preface to Programming: Principles and Practice Using C++, 2nd Edition—Bjarne Stroustrup C++の設計者であるBjarne Stroustrupが書いたプログラミング入門書、『Programming: Principles and Practice Using C++』(邦題:ストラウストラップのプログラ…

Unicode APIをC++標準ライブラリに入れる難しさについての考察

C++

Unicode APIをC++標準ライブラリに入れる設計的な難しさについての思考整理。 たとえば、以下のような「あるコードポイントが結合文字かを判定する非メンバ関数」をC++標準ライブラリに入れることはできない。 bool is_combining_character(char32_t code_un…