@@ -193,7 +193,7 @@ open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding, NSC
193
193
NSRequiresConcreteImplementation ( )
194
194
}
195
195
let start = _storage. utf16. startIndex
196
- return _storage. utf16 [ start . advanced ( by : index) ]
196
+ return _storage. utf16 [ _storage . utf16 . index ( start , offsetBy : index) ]
197
197
}
198
198
199
199
public override convenience init ( ) {
@@ -347,16 +347,15 @@ extension NSString {
347
347
348
348
public func substring( from: Int ) -> String {
349
349
if type ( of: self ) == NSString . self || type ( of: self ) == NSMutableString . self {
350
- return String ( _storage. utf16. suffix ( from: _storage. utf16. startIndex . advanced ( by : from) ) ) !
350
+ return String ( _storage. utf16. suffix ( from: _storage. utf16. index ( _storage . utf16 . startIndex , offsetBy : from) ) ) !
351
351
} else {
352
352
return substring ( with: NSRange ( location: from, length: length - from) )
353
353
}
354
354
}
355
355
356
356
public func substring( to: Int ) -> String {
357
357
if type ( of: self ) == NSString . self || type ( of: self ) == NSMutableString . self {
358
- return String ( _storage. utf16. prefix ( upTo: _storage. utf16. startIndex
359
- . advanced ( by: to) ) ) !
358
+ return String ( _storage. utf16. prefix ( upTo: _storage. utf16. index ( _storage. utf16. startIndex, offsetBy: to) ) ) !
360
359
} else {
361
360
return substring ( with: NSRange ( location: 0 , length: to) )
362
361
}
@@ -365,8 +364,8 @@ extension NSString {
365
364
public func substring( with range: NSRange ) -> String {
366
365
if type ( of: self ) == NSString . self || type ( of: self ) == NSMutableString . self {
367
366
let start = _storage. utf16. startIndex
368
- let min = start . advanced ( by : range. location)
369
- let max = start . advanced ( by : range. location + range. length)
367
+ let min = _storage . utf16 . index ( start , offsetBy : range. location)
368
+ let max = _storage . utf16 . index ( start , offsetBy : range. location + range. length)
370
369
return String ( decoding: _storage. utf16 [ min..< max] , as: UTF16 . self)
371
370
} else {
372
371
let buff = UnsafeMutablePointer< unichar> . allocate( capacity: range. length)
0 commit comments