| 71 | using parent_t::fill; |
| 72 | |
| 73 | void swap(self &other) { |
| 74 | parent_t::swap(static_cast<parent_t &>(other)); |
| 75 | } |
| 76 | |
| 77 | friend bool operator==(const self &lhs, const self &rhs) { |
| 78 | return static_cast<const parent_t &>(lhs) == |
no test coverage detected