How to initialize a AutoHashMap with string as value?

as title.

var map = std.AutoHashMap(i32, ???).init(std.heap.page_allocator);
try map.put(1, "Hello World");

std.AutoHashMap(i32, []const u8)

3 Likes