| 62 | const RYWMutation& at(int n) const { return (n == 0) ? singletonOperation : optionalOperations.get()[n - 1]; } |
| 63 | |
| 64 | int size() const { return defaultConstructed ? 0 : hasVector() ? optionalOperations.get().size() + 1 : 1; } |
| 65 | |
| 66 | bool operator==(const OperationStack& r) const; |
| 67 | }; |
no test coverage detected