@@ -243,7 +243,6 @@ extension String {
243
243
244
244
/// A capitalized representation of the `String` that is produced
245
245
/// using the current locale.
246
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
247
246
public var localizedCapitalized : String {
248
247
return _ns. localizedCapitalized
249
248
}
@@ -937,7 +936,6 @@ extension String {
937
936
938
937
/// A lowercase version of the string that is produced using the current
939
938
/// locale.
940
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
941
939
public var localizedLowercase : String {
942
940
return _ns. localizedLowercase
943
941
}
@@ -1127,7 +1125,6 @@ extension String {
1127
1125
/// similar to how searches are done generally in the system. The search is
1128
1126
/// locale-aware, case and diacritic insensitive. The exact list of search
1129
1127
/// options applied may change over time.
1130
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1131
1128
public func localizedStandardContains( _ string: String ) -> Bool {
1132
1129
return _ns. localizedStandardContains ( string)
1133
1130
}
@@ -1142,7 +1139,6 @@ extension String {
1142
1139
/// similar to how searches are done generally in the system. The search is
1143
1140
/// locale-aware, case and diacritic insensitive. The exact list of search
1144
1141
/// options applied may change over time.
1145
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1146
1142
public func localizedStandardRange( of string: String ) -> Range < Index > ? {
1147
1143
return _optionalRange ( _ns. localizedStandardRange ( of: string) )
1148
1144
}
@@ -1389,7 +1385,6 @@ extension String {
1389
1385
1390
1386
/// An uppercase version of the string that is produced using the current
1391
1387
/// locale.
1392
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1393
1388
public var localizedUppercase : String {
1394
1389
return _ns. localizedUppercase as String
1395
1390
}
@@ -1442,7 +1437,6 @@ extension String {
1442
1437
1443
1438
/// Perform string transliteration.
1444
1439
#if false
1445
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1446
1440
public func applyingTransform(
1447
1441
_ transform: StringTransform , reverse: Bool
1448
1442
) -> String ? {
0 commit comments