I'm looking through the Swift implementation of String (https://github.com/apple/swift/blob/master/stdlib/public/core/String.swift)
String implements the Hashable protocol, which means that it must provide a hashValue. However, none is provided in the String implementation linked to above. Where can I find this? I'm assuming String inherits it from somewhere.