Make StaticString conform to Hashable

The whole point of StaticString is that it represents a single contiguous string literal stored in static data in the binary, so we'll only be able to add mutating methods once guaranteed compile-time evaluation is a thing. (Or if we bend some rules for StaticString to make sure the compiler knows about this as a special case for now.)

5 Likes