Makes sense. The lack of non-experimental compiler supported string views makes 
it really easy to write string parsing code that makes unnecessary temporary 
copies. For instance, this will copy in some cases:
    
    
    var readOnlyObject = ObjectType(readOnlyString: “foobar”)
    …
    let readOnlyString = readOnlyObject.readOnlyString
    
    
    Run

Reply via email to