Hello,

I have been advised to post the bug report 
https://bugs.swift.org/browse/SR-1246 on swift-evolution, so here it is:

In the latest swift-DEVELOPMENT-SNAPSHOT-2016-04-12-a.xctoolchain (master), 
there are inconsistencies in the following declarations:

    extension String {
        public func lowercased() -> String
        public func uppercased() -> String
    }

    extension NSString {
        public var uppercased: String { get }
        public var lowercased: String { get }
        public var capitalized: String { get }
        public var localizedUppercase: String { get }
        public var localizedLowercase: String { get }
        public var localizedCapitalized: String { get }
    }

We see that we have sometimes properties, sometimes functions, and they 
sometimes end in -ed, and sometimes not.

Gwendal Roué

_______________________________________________
swift-evolution mailing list
[email protected]
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to