@@ -228,7 +228,6 @@ extension String {
228
228
229
229
/// A capitalized representation of the `String` that is produced
230
230
/// using the current locale.
231
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
232
231
public var localizedCapitalized : String {
233
232
return _ns. localizedCapitalized
234
233
}
@@ -955,7 +954,6 @@ extension String {
955
954
956
955
/// A lowercase version of the string that is produced using the current
957
956
/// locale.
958
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
959
957
public var localizedLowercase : String {
960
958
return _ns. localizedLowercase
961
959
}
@@ -1146,7 +1144,6 @@ extension String {
1146
1144
/// similar to how searches are done generally in the system. The search is
1147
1145
/// locale-aware, case and diacritic insensitive. The exact list of search
1148
1146
/// options applied may change over time.
1149
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1150
1147
public func localizedStandardContains( _ string: String ) -> Bool {
1151
1148
return _ns. localizedStandardContains ( string)
1152
1149
}
@@ -1161,7 +1158,6 @@ extension String {
1161
1158
/// similar to how searches are done generally in the system. The search is
1162
1159
/// locale-aware, case and diacritic insensitive. The exact list of search
1163
1160
/// options applied may change over time.
1164
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1165
1161
public func localizedStandardRange( of string: String ) -> Range < Index > ? {
1166
1162
return _optionalRange ( _ns. localizedStandardRange ( of: string) )
1167
1163
}
@@ -1419,7 +1415,6 @@ extension String {
1419
1415
1420
1416
/// An uppercase version of the string that is produced using the current
1421
1417
/// locale.
1422
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1423
1418
public var localizedUppercase : String {
1424
1419
return _ns. localizedUppercase as String
1425
1420
}
@@ -1472,7 +1467,6 @@ extension String {
1472
1467
1473
1468
/// Perform string transliteration.
1474
1469
#if false
1475
- @available ( OSX 10 . 11 , iOS 9 . 0 , * )
1476
1470
public func applyingTransform(
1477
1471
_ transform: StringTransform , reverse: Bool
1478
1472
) -> String ? {
0 commit comments