flat_map 中 const char* 键的比较器(使用 kstd::strcmp)。
| 47 | |
| 48 | /// flat_map 中 const char* 键的比较器(使用 kstd::strcmp)。 |
| 49 | struct CStrLess { |
| 50 | auto operator()(const char* a, const char* b) const -> bool { |
| 51 | return kstd::strcmp(a, b) < 0; |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | /** |
| 56 | * @brief 驱动注册表 — 以 ETL vector 存储 DriverEntry,并附带 flat_map |
nothing calls this directly
no outgoing calls
no test coverage detected