| 32 | unsigned long size() const { return item.size(); } |
| 33 | }; |
| 34 | funny_sequence make_funny_sequence(const std::vector<unsigned long>& item) |
| 35 | { |
| 36 | funny_sequence temp; |
| 37 | temp.item = item; |
| 38 | return temp; |
| 39 | } |
| 40 | |
| 41 | // ---------------------------------------------------------------------------------------- |
| 42 |