@@ -1178,7 +1178,7 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
1178
1178
/// - parameter url: The `URL` to read.
1179
1179
/// - parameter options: Options for the read operation. Default value is `[]`.
1180
1180
/// - throws: An error in the Cocoa domain, if `url` cannot be read.
1181
- public init ( contentsOf url: __shared URL, options: __shared Data. ReadingOptions = [ ] ) throws {
1181
+ public init ( contentsOf url: __shared URL, options: Data . ReadingOptions = [ ] ) throws {
1182
1182
let d = try NSData ( contentsOf: url, options: ReadingOptions ( rawValue: options. rawValue) )
1183
1183
_backing = _DataStorage ( immutableReference: d, offset: 0 )
1184
1184
_sliceRange = 0 ..< d. length
@@ -1189,7 +1189,7 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
1189
1189
/// Returns nil when the input is not recognized as valid Base-64.
1190
1190
/// - parameter base64String: The string to parse.
1191
1191
/// - parameter options: Encoding options. Default value is `[]`.
1192
- public init ? ( base64Encoded base64String: __shared String, options: __shared Data. Base64DecodingOptions = [ ] ) {
1192
+ public init ? ( base64Encoded base64String: __shared String, options: Data . Base64DecodingOptions = [ ] ) {
1193
1193
if let d = NSData ( base64Encoded: base64String, options: Base64DecodingOptions ( rawValue: options. rawValue) ) {
1194
1194
_backing = _DataStorage ( immutableReference: d, offset: 0 )
1195
1195
_sliceRange = 0 ..< d. length
@@ -1204,7 +1204,7 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
1204
1204
///
1205
1205
/// - parameter base64Data: Base-64, UTF-8 encoded input data.
1206
1206
/// - parameter options: Decoding options. Default value is `[]`.
1207
- public init ? ( base64Encoded base64Data: __shared Data, options: __shared Data. Base64DecodingOptions = [ ] ) {
1207
+ public init ? ( base64Encoded base64Data: __shared Data, options: Data . Base64DecodingOptions = [ ] ) {
1208
1208
if let d = NSData ( base64Encoded: base64Data, options: Base64DecodingOptions ( rawValue: options. rawValue) ) {
1209
1209
_backing = _DataStorage ( immutableReference: d, offset: 0 )
1210
1210
_sliceRange = 0 ..< d. length
0 commit comments