| 23 | template <typename CLASS> |
| 24 | template <typename T> |
| 25 | void DottedPairImpl<CLASS>::push_front( const T& object){ |
| 26 | CLASS& ref = static_cast<CLASS&>(*this) ; |
| 27 | ref.set__( grow(object, ref.get__() ) ) ; |
| 28 | } |
| 29 | |
| 30 | template <typename CLASS> |
| 31 | template <typename T> |