| 22 | namespace python |
| 23 | { |
| 24 | inline const char* c_str(const std::string& v) noexcept |
| 25 | { |
| 26 | return v.c_str(); |
| 27 | } |
| 28 | inline consteval const char* c_str(std::string_view v) noexcept |
| 29 | { |
| 30 | return v.data(); |
no outgoing calls
no test coverage detected