| 49 | |
| 50 | template<typename I> |
| 51 | [[gnu::pure]] |
| 52 | static std::string_view |
| 53 | CheckByteArrayArrayFrontToString(I &&i) noexcept |
| 54 | { |
| 55 | if (i.GetArgType() != DBUS_TYPE_ARRAY) |
| 56 | return {}; |
| 57 | |
| 58 | return CheckByteArrayToString(i.Recurse()); |
| 59 | } |
| 60 | |
| 61 | static void |
| 62 | ParseDriveDictEntry(Object &o, const char *name, |
no test coverage detected