| 1222 | constexpr void reset(int32_t depth) const { return block().reset(depth); } |
| 1223 | constexpr void confirm(int32_t depth) const { return block().confirm(depth); } |
| 1224 | constexpr bool hasValue() const { return block().hasValue(); } |
| 1225 | // non-const to inform users not to mark Id as const. |
| 1226 | constexpr Type const &value() { return block().value(); } |
| 1227 | // non-const to inform users not to mark Id as const. |