You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>>>>>>[Stdlib][Overlays] Rename various classes to avoid conflicting ObjC names.
588
526
}
589
527
590
528
@inlinable // This is @inlinable despite escaping the _DataStorage boundary layer because it is generic and trivially computed.
@@ -905,15 +843,8 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
905
843
internalstructInlineSlice{
906
844
// ***WARNING***
907
845
// These ivars are specifically laid out so that they cause the enum _Representation to be 16 bytes on 64 bit platforms. This means we _MUST_ have the class type thing last
908
-
<<<<<<< HEAD
909
846
@usableFromInlinevarslice:Range<HalfInt>
910
-
@usableFromInlinevarstorage:_DataStorage
911
-
=======
912
-
@usableFromInline
913
-
varslice:Range<HalfInt>
914
-
@usableFromInline
915
-
varstorage:__DataStorage
916
-
>>>>>>> [Stdlib][Overlays] Rename variousclasses to avoid conflicting ObjC names.
847
+
@usableFromInlinevarstorage:__DataStorage
917
848
918
849
@inlinable // This is @inlinable as trivially computable.
919
850
staticfunc canStore(count:Int)->Bool{
@@ -965,25 +896,15 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
965
896
self.init(large.storage, range: range)
966
897
}
967
898
968
-
<<<<<<< HEAD
969
899
@inlinable // This is @inlinable as a trivial initializer.
970
-
init(_ storage:_DataStorage, count:Int){
971
-
=======
972
-
@inlinable
973
900
init(_ storage:__DataStorage, count:Int){
974
-
>>>>>>>[Stdlib][Overlays] Rename various classes to avoid conflicting ObjC names.
975
901
assert(count <HalfInt.max)
976
902
self.storage = storage
977
903
slice =0..<HalfInt(count)
978
904
}
979
905
980
-
<<<<<<< HEAD
981
906
@inlinable // This is @inlinable as a trivial initializer.
982
-
init(_ storage: _DataStorage, range:Range<Int>){
983
-
=======
984
-
@inlinable
985
907
init(_ storage:__DataStorage, range:Range<Int>){
986
-
>>>>>>>[Stdlib][Overlays] Rename various classes to avoid conflicting ObjC names.
987
908
assert(range.lowerBound <HalfInt.max)
988
909
assert(range.upperBound <HalfInt.max)
989
910
self.storage = storage
@@ -1168,15 +1089,8 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
1168
1089
internalstructLargeSlice{
1169
1090
// ***WARNING***
1170
1091
// These ivars are specifically laid out so that they cause the enum _Representation to be 16 bytes on 64 bit platforms. This means we _MUST_ have the class type thing last
1171
-
<<<<<<< HEAD
1172
1092
@usableFromInlinevarslice:RangeReference
1173
-
@usableFromInlinevarstorage:_DataStorage
1174
-
=======
1175
-
@usableFromInline
1176
-
varslice:RangeReference
1177
-
@usableFromInline
1178
-
varstorage:__DataStorage
1179
-
>>>>>>>[Stdlib][Overlays] Rename various classes to avoid conflicting ObjC names.
1093
+
@usableFromInlinevarstorage:__DataStorage
1180
1094
1181
1095
@inlinable // This is @inlinable as a convenience initializer.
1182
1096
init(_ buffer:UnsafeRawBufferPointer){
@@ -1195,12 +1109,8 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
1195
1109
1196
1110
@inlinable // This is @inlinable as a convenience initializer.
0 commit comments