| 194 | return std::reverse_iterator<const_iterator>(cbegin()); |
| 195 | } |
| 196 | const_reverse_iterator crend() const { |
| 197 | return std::reverse_iterator<const_iterator>(cend()); |
| 198 | } |
| 199 | |
| 200 | lua_State* lua_state() const noexcept { |
| 201 | return L; |
nothing calls this directly
no outgoing calls
no test coverage detected