- 99 名前:デフォルトの名無しさん mailto:sage [2006/06/30(金) 01:10:08 ]
- うはw やべぇ concept_map 凶悪
concept_map InputIterator<int> { typedef int value_type; typedef int reference; typedef int* pointer; typedef int difference_type; int operator*(int x) { return x; } }; copy(1, 17, ostream_iterator<int>(cout, " ")); // prints: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|

|