fn sentinel(comptime T: type) ?Elem(T)
Given a type which can have a sentinel e.g. [:0]u8, returns the sentinel value, or null if there is not one. Types which cannot possibly have a sentinel will be a compile error.
[:0]u8
null
T: type,