| 86 | |
| 87 | template <typename T> |
| 88 | decltype(auto) get(difference_type index_offset = 0) const { |
| 89 | return stack::get<T>(L, index + static_cast<int>(index_offset)); |
| 90 | } |
| 91 | |
| 92 | type get_type(difference_type index_offset = 0) const noexcept { |
| 93 | return type_of(L, index + static_cast<int>(index_offset)); |
nothing calls this directly
no outgoing calls
no test coverage detected