2007-08-08から1日間の記事一覧

array

C++

固定長配列クラス 元ネタはboost::array #include <algorithm> namespace shand { template <class Type, size_t Size> class array { public: Type element_[Size]; public: typedef Type& reference; typedef Type difference_type; typedef Type value_type; typedef Type* iterator; typedef </class></algorithm>…