| author | |
| committer | |
| log | 52ead255a27e62e7c33748b04971aca49e06b5d8 |
| tree | 6d03dcee037501f2c83875a5656722e0b60b09e9 |
| parent | 6f180131a57efe1aa8fa13da42644555581613f6 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/comptime_string_map.zig+1-1| ... | ... | @@ -6,7 +6,7 @@ |
| 6 | 6 | const std = @import("std.zig"); |
| 7 | 7 | const mem = std.mem; |
| 8 | 8 | |
| 9 | /// Like ComptimeStringHashMap but optimized for small sets of disparate string keys. | |
| 9 | /// Comptime string map optimized for small sets of disparate string keys. | |
| 10 | 10 | /// Works by separating the keys by length at comptime and only checking strings of |
| 11 | 11 | /// equal length at runtime. |
| 12 | 12 | /// |