-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathSwift.swift
8516 lines (8516 loc) · 313 KB
/
Swift.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import SwiftShims
infix operator %= {
associativity right
precedence 90
assignment
}
infix operator += {
associativity right
precedence 90
assignment
}
infix operator -= {
associativity right
precedence 90
assignment
}
infix operator ... {
associativity none
precedence 135
}
infix operator /= {
associativity right
precedence 90
assignment
}
infix operator && {
associativity left
precedence 120
}
infix operator &* {
associativity left
precedence 150
}
infix operator &+ {
associativity left
precedence 140
}
infix operator &- {
associativity left
precedence 140
}
infix operator === {
associativity none
precedence 130
}
infix operator ..< {
associativity none
precedence 135
}
infix operator == {
associativity none
precedence 130
}
infix operator ^= {
associativity right
precedence 90
assignment
}
infix operator ?? {
associativity right
precedence 131
}
infix operator ^ {
associativity left
precedence 140
}
prefix operator ! {
}
infix operator &= {
associativity right
precedence 90
assignment
}
infix operator % {
associativity left
precedence 150
}
infix operator & {
associativity left
precedence 150
}
infix operator *= {
associativity right
precedence 90
assignment
}
infix operator * {
associativity left
precedence 150
}
prefix operator + {
}
infix operator + {
associativity left
precedence 140
}
prefix operator - {
}
infix operator - {
associativity left
precedence 140
}
infix operator / {
associativity left
precedence 150
}
infix operator <<= {
associativity right
precedence 90
assignment
}
postfix operator ++ {
}
prefix operator ++ {
}
infix operator || {
associativity left
precedence 110
}
infix operator << {
associativity none
precedence 160
}
infix operator |= {
associativity right
precedence 90
assignment
}
infix operator >>= {
associativity right
precedence 90
assignment
}
infix operator <= {
associativity none
precedence 130
}
postfix operator -- {
}
prefix operator -- {
}
infix operator ~= {
associativity none
precedence 130
}
infix operator !== {
associativity none
precedence 130
}
infix operator >= {
associativity none
precedence 130
}
infix operator ~> {
associativity left
precedence 255
}
infix operator < {
associativity none
precedence 130
}
infix operator | {
associativity left
precedence 140
}
infix operator >> {
associativity none
precedence 160
}
infix operator != {
associativity none
precedence 130
}
infix operator > {
associativity none
precedence 130
}
prefix operator ~ {
}
@asmname("swift_stdlib_NSStringASCIIHashValue") func _stdlib_NSStringASCIIHashValue(str: AnyObject) -> Int
struct UnsafePointer<T> : RandomAccessIndexType, BidirectionalIndexType, ForwardIndexType, _Incrementable, Equatable, Strideable, Comparable, _Strideable, Hashable, NilLiteralConvertible, _PointerType {
var _rawValue: RawPointer
init()
init(_ _rawValue: RawPointer)
init(_ other: COpaquePointer)
init(bitPattern: Word)
init(bitPattern: UWord)
init<U>(_ from: UnsafeMutablePointer<U>)
init<U>(_ from: UnsafePointer<U>)
init(nilLiteral: ())
let memory: T
var memory: T {
unsafeAddress {}
}
var _isNull: Bool {
get {}
}
subscript (i: Int) -> T {
unsafeAddress {}
}
var hashValue: Int {
get {}
}
func successor() -> UnsafePointer<T>
func predecessor() -> UnsafePointer<T>
func distanceTo(x: UnsafePointer<T>) -> Int
func advancedBy(n: Int) -> UnsafePointer<T>
typealias Distance = Int
typealias _DisabledRangeIndex = _DisabledRangeIndex_
typealias Stride = Int
}
func _rawPointerToString(value: RawPointer) -> String
@asmname("swift_float32ToString") func _float32ToStringImpl(buffer: UnsafeMutablePointer<CodeUnit>, _ bufferLength: UWord, _ value: Float32) -> UWord
protocol UnicodeCodecType {
typealias CodeUnit
init()
mutating func decode<G : GeneratorType where G.Element == CodeUnit>(inout next: G) -> UnicodeDecodingResult
static func encode<S : SinkType where S.Element == CodeUnit>(input: UnicodeScalar, inout output: S)
}
@available(*, unavailable) typealias DebugPrintable = CustomDebugStringConvertible
var _hashContainerDefaultMaxLoadFactorInverse: Double {
get {}
}
protocol ErrorType {
var _domain: String { get }
var _code: Int { get }
}
@asmname("_forceBridgeFromObjectiveC_bridgeable") func _forceBridgeFromObjectiveC_bridgeable<T : _ObjectiveCBridgeable>(x: T._ObjectiveCType, _: T.Type) -> T
@inline(__always) func _class_getInstancePositiveExtentSize(theClass: AnyClass) -> Int
func _convertMutableArrayToPointerArgument<FromElement, ToPointer : _PointerType>(inout a: Array<FromElement>) -> (AnyObject?, ToPointer)
struct Dictionary<Key : Hashable, Value> : CollectionType, SequenceType, _CollectionDefaultsType, _CollectionGeneratorDefaultsType, DictionaryLiteralConvertible {
typealias _Self = Dictionary<Key, Value>
typealias _VariantStorage = _VariantDictionaryStorage<Key, Value>
typealias _NativeStorage = _NativeDictionaryStorage<Key, Value>
typealias Element = (Key, Value)
typealias Index = DictionaryIndex<Key, Value>
var _variantStorage: _VariantDictionaryStorage<Key, Value>
init()
init(minimumCapacity: Int)
init(_nativeStorage: _NativeDictionaryStorage<Key, Value>)
init(_nativeStorageOwner: _NativeDictionaryStorageOwner<Key, Value>)
init(_immutableCocoaDictionary: _NSDictionaryType)
var startIndex: DictionaryIndex<Key, Value> {
get {}
}
var endIndex: DictionaryIndex<Key, Value> {
get {}
}
func indexForKey(key: Key) -> DictionaryIndex<Key, Value>?
subscript (position: DictionaryIndex<Key, Value>) -> (Key, Value) {
get {}
}
subscript (key: Key) -> Value? {
get {}
set(newValue) {}
}
mutating func updateValue(value: Value, forKey key: Key) -> Value?
mutating func removeAtIndex(index: DictionaryIndex<Key, Value>)
mutating func removeValueForKey(key: Key) -> Value?
mutating func removeAll(keepCapacity keepCapacity: Bool = default)
var count: Int {
get {}
}
func generate() -> DictionaryGenerator<Key, Value>
init(dictionaryLiteral elements: (Key, Value)...)
var keys: LazyForwardCollection<MapCollectionView<Dictionary<Key, Value>, Key>> {
get {}
}
var values: LazyForwardCollection<MapCollectionView<Dictionary<Key, Value>, Value>> {
get {}
}
var isEmpty: Bool {
get {}
}
typealias _Element = (Key, Value)
typealias Generator = DictionaryGenerator<Key, Value>
typealias _prext_SubSlice = _prext_Slice<Dictionary<Key, Value>>
typealias Key = Key
typealias Value = Value
}
infix func ==(a: _ValueOrReference, b: _ValueOrReference) -> Bool
infix func ==(a: _BridgeStyle, b: _BridgeStyle) -> Bool
infix func ==(a: MirrorDisposition, b: MirrorDisposition) -> Bool
infix func ==(a: Mirror.DefaultDescendantRepresentation, b: Mirror.DefaultDescendantRepresentation) -> Bool
infix func ==(a: Mirror.DisplayStyle, b: Mirror.DisplayStyle) -> Bool
infix func ==(a: _ValueOrReference, b: _ValueOrReference) -> Bool
infix func ==(a: _BridgeStyle, b: _BridgeStyle) -> Bool
func ==<T : Equatable>(lhs: ContiguousArray<T>, rhs: ContiguousArray<T>) -> Bool
func ==<T : Equatable>(lhs: ArraySlice<T>, rhs: ArraySlice<T>) -> Bool
func ==<T : Equatable>(lhs: Array<T>, rhs: Array<T>) -> Bool
func ==<T : Equatable>(lhs: _UnitTestArray<T>, rhs: _UnitTestArray<T>) -> Bool
func ==(lhs: Bool, rhs: Bool) -> Bool
func ==<T>(lhs: AutoreleasingUnsafeMutablePointer<T>, rhs: AutoreleasingUnsafeMutablePointer<T>) -> Bool
func ==(lhs: NativeObject, rhs: NativeObject) -> Bool
func ==(lhs: RawPointer, rhs: RawPointer) -> Bool
func ==(t0: Any.Type?, t1: Any.Type?) -> Bool
func ==(lhs: COpaquePointer, rhs: COpaquePointer) -> Bool
func ==(lhs: Character, rhs: Character) -> Bool
func ==<T : RawRepresentable where T.RawValue : Equatable>(lhs: T, rhs: T) -> Bool
func ==<T : _RawOptionSetType>(a: T, b: T) -> Bool
func ==<I>(lhs: _ConcatenateForwardIndex<I>, rhs: _ConcatenateForwardIndex<I>) -> Bool
func ==<I>(lhs: _ConcatenateBidirectionalIndex<I>, rhs: _ConcatenateBidirectionalIndex<I>) -> Bool
func ==<Base : CollectionType>(lhs: FilterCollectionViewIndex<Base>, rhs: FilterCollectionViewIndex<Base>) -> Bool
func ==(lhs: UInt8, rhs: UInt8) -> Bool
func ==(lhs: Int8, rhs: Int8) -> Bool
func ==(lhs: UInt16, rhs: UInt16) -> Bool
func ==(lhs: Int16, rhs: Int16) -> Bool
func ==(lhs: UInt32, rhs: UInt32) -> Bool
func ==(lhs: Int32, rhs: Int32) -> Bool
func ==(lhs: UInt64, rhs: UInt64) -> Bool
func ==(lhs: Int64, rhs: Int64) -> Bool
func ==(lhs: UInt, rhs: UInt) -> Bool
func ==(lhs: Int, rhs: Int) -> Bool
func ==(lhs: Float, rhs: Float) -> Bool
func ==(lhs: Double, rhs: Double) -> Bool
func ==(lhs: Float80, rhs: Float80) -> Bool
func ==(lhs: FloatingPointClassification, rhs: FloatingPointClassification) -> Bool
func ==<T : Hashable>(lhs: Set<T>, rhs: Set<T>) -> Bool
func ==<Key : Equatable, Value : Equatable>(lhs: [Key : Value], rhs: [Key : Value]) -> Bool
func ==<T : Hashable>(lhs: _NativeSetIndex<T>, rhs: _NativeSetIndex<T>) -> Bool
func ==(lhs: _CocoaSetIndex, rhs: _CocoaSetIndex) -> Bool
func ==<T : Hashable>(lhs: SetIndex<T>, rhs: SetIndex<T>) -> Bool
func ==<T : Hashable>(lhs: SetMirrorPosition<T>, rhs: Int) -> Bool
func ==<Key : Hashable, Value>(lhs: _NativeDictionaryIndex<Key, Value>, rhs: _NativeDictionaryIndex<Key, Value>) -> Bool
func ==(lhs: _CocoaDictionaryIndex, rhs: _CocoaDictionaryIndex) -> Bool
func ==<Key : Hashable, Value>(lhs: DictionaryIndex<Key, Value>, rhs: DictionaryIndex<Key, Value>) -> Bool
func ==<Key : Hashable, Value>(lhs: DictionaryMirrorPosition<Key, Value>, rhs: Int) -> Bool
func ==<Value, Element>(lhs: _HeapBuffer<Value, Element>, rhs: _HeapBuffer<Value, Element>) -> Bool
func ==<T : Comparable>(lhs: HalfOpenInterval<T>, rhs: HalfOpenInterval<T>) -> Bool
func ==<T : Comparable>(lhs: ClosedInterval<T>, rhs: ClosedInterval<T>) -> Bool
func ==<Value, Element>(lhs: ManagedBufferPointer<Value, Element>, rhs: ManagedBufferPointer<Value, Element>) -> Bool
func ==<T : Equatable>(lhs: T?, rhs: T?) -> Bool
func ==<T>(lhs: T?, rhs: _OptionalNilComparisonType) -> Bool
func ==<T>(lhs: _OptionalNilComparisonType, rhs: T?) -> Bool
func ==<T>(lhs: Range<T>, rhs: Range<T>) -> Bool
func ==(x: ObjectIdentifier, y: ObjectIdentifier) -> Bool
infix func ==(a: MirrorDisposition, b: MirrorDisposition) -> Bool
func ==<I>(lhs: ReverseBidirectionalIndex<I>, rhs: ReverseBidirectionalIndex<I>) -> Bool
func ==<I>(lhs: ReverseRandomAccessIndex<I>, rhs: ReverseRandomAccessIndex<I>) -> Bool
func ==<T : _Strideable>(x: T, y: T) -> Bool
func ==(lhs: String, rhs: String) -> Bool
func ==(lhs: Index, rhs: Index) -> Bool
func ==(lhs: String.UnicodeScalarView.Index, rhs: String.UnicodeScalarView.Index) -> Bool
func ==(lhs: String.UTF16View.Index, rhs: String.UTF16View.Index) -> Bool
func ==(lhs: String.UTF8View.Index, rhs: String.UTF8View.Index) -> Bool
func ==(lhs: UnicodeScalar, rhs: UnicodeScalar) -> Bool
func ==<T>(lhs: UnsafeMutablePointer<T>, rhs: UnsafeMutablePointer<T>) -> Bool
func ==<T>(lhs: UnsafePointer<T>, rhs: UnsafePointer<T>) -> Bool
func ==(left: _SwiftNSOperatingSystemVersion, right: _SwiftNSOperatingSystemVersion) -> Bool
func ==(lhs: Bit, rhs: Bit) -> Bool
func ==(lhs: AnyForwardIndex, rhs: AnyForwardIndex) -> Bool
func ==(lhs: AnyBidirectionalIndex, rhs: AnyBidirectionalIndex) -> Bool
func ==(lhs: AnyRandomAccessIndex, rhs: AnyRandomAccessIndex) -> Bool
infix func ==(a: Mirror.DefaultDescendantRepresentation, b: Mirror.DefaultDescendantRepresentation) -> Bool
infix func ==(a: Mirror.DisplayStyle, b: Mirror.DisplayStyle) -> Bool
func removeRange<C : RangeReplaceableCollectionType>(inout x: C, _ subRange: Range<C.Index>)
prefix func !(a: Bool) -> Bool
prefix func !<T : BooleanType>(a: T) -> Bool
struct _TupleMirror : MirrorType {
let data: _MagicMirrorData
var value: Any {
get {}
}
var valueType: Any.Type {
get {}
}
var objectIdentifier: ObjectIdentifier? {
get {}
}
var count: Int {
@asmname("swift_TupleMirror_count") get {}
}
subscript (i: Int) -> (String, MirrorType) {
@asmname("swift_TupleMirror_subscript") get {}
}
var summary: String {
get {}
}
var quickLookObject: QuickLookObject? {
get {}
}
var disposition: MirrorDisposition {
get {}
}
init(data: _MagicMirrorData)
}
struct UInt32 : UnsignedIntegerType, IntegerType, Equatable, Comparable, _IntegerType, IntegerArithmeticType, _IntegerArithmeticType, IntegerLiteralConvertible, _BuiltinIntegerLiteralConvertible, _UnsignedIntegerType {
var value: Int32
typealias Distance = Int
init()
init(_ _v: Int32)
init(_ value: UInt32)
init(bigEndian value: UInt32)
init(littleEndian value: UInt32)
init(_builtinIntegerLiteral value: Int2048)
init(integerLiteral value: UInt32)
var bigEndian: UInt32 {
get {}
}
var littleEndian: UInt32 {
get {}
}
var byteSwapped: UInt32 {
get {}
}
static var max: UInt32 {
get {}
}
static var min: UInt32 {
get {}
}
static var _sizeInBits: UInt32 {
get {}
}
typealias _DisallowMixedSignArithmetic = Int
typealias IntegerLiteralType = UInt32
}
func %(lhs: UInt8, rhs: UInt8) -> UInt8
func %(lhs: Int8, rhs: Int8) -> Int8
func %(lhs: UInt16, rhs: UInt16) -> UInt16
func %(lhs: Int16, rhs: Int16) -> Int16
func %(lhs: UInt32, rhs: UInt32) -> UInt32
func %(lhs: Int32, rhs: Int32) -> Int32
func %(lhs: UInt64, rhs: UInt64) -> UInt64
func %(lhs: Int64, rhs: Int64) -> Int64
func %(lhs: UInt, rhs: UInt) -> UInt
func %(lhs: Int, rhs: Int) -> Int
@asmname("_swift_fmodf") func %(lhs: Float, rhs: Float) -> Float
@asmname("_swift_fmod") func %(lhs: Double, rhs: Double) -> Double
@asmname("_swift_fmodl") func %(lhs: Float80, rhs: Float80) -> Float80
func %<T : _IntegerArithmeticType>(lhs: T, rhs: T) -> T
func &<T : _RawOptionSetType>(a: T, b: T) -> T
func &(lhs: UInt8, rhs: UInt8) -> UInt8
func &(lhs: Int8, rhs: Int8) -> Int8
func &(lhs: UInt16, rhs: UInt16) -> UInt16
func &(lhs: Int16, rhs: Int16) -> Int16
func &(lhs: UInt32, rhs: UInt32) -> UInt32
func &(lhs: Int32, rhs: Int32) -> Int32
func &(lhs: UInt64, rhs: UInt64) -> UInt64
func &(lhs: Int64, rhs: Int64) -> Int64
func &(lhs: UInt, rhs: UInt) -> UInt
func &(lhs: Int, rhs: Int) -> Int
func _ArrayExtend<T, S : SequenceType where S.Generator.Element == T>(inout a: Array<T>, sequence: S)
struct ReverseRandomAccessIndex<I : RandomAccessIndexType> : RandomAccessIndexType, BidirectionalIndexType, ForwardIndexType, _Incrementable, Equatable, Strideable, Comparable, _Strideable {
var _base: I
init(_ _base: I)
func successor() -> ReverseRandomAccessIndex<I>
func predecessor() -> ReverseRandomAccessIndex<I>
typealias Distance = I.Distance
func distanceTo(other: ReverseRandomAccessIndex<I>) -> I.Distance
func advancedBy(amount: I.Distance) -> ReverseRandomAccessIndex<I>
typealias _DisabledRangeIndex = _DisabledRangeIndex_
typealias Stride = I.Distance
}
class _AnySequenceBox {
func generate() -> _AnyGeneratorBase
func _underestimateCount() -> Int
func _initializeTo(ptr: UnsafeMutablePointer<Void>)
func _copyToNativeArrayBuffer() -> _ContiguousArrayStorageBase
init()
@objc deinit
}
func *(lhs: UInt8, rhs: UInt8) -> UInt8
func *(lhs: Int8, rhs: Int8) -> Int8
func *(lhs: UInt16, rhs: UInt16) -> UInt16
func *(lhs: Int16, rhs: Int16) -> Int16
func *(lhs: UInt32, rhs: UInt32) -> UInt32
func *(lhs: Int32, rhs: Int32) -> Int32
func *(lhs: UInt64, rhs: UInt64) -> UInt64
func *(lhs: Int64, rhs: Int64) -> Int64
func *(lhs: UInt, rhs: UInt) -> UInt
func *(lhs: Int, rhs: Int) -> Int
func *(lhs: Float, rhs: Float) -> Float
func *(lhs: Double, rhs: Double) -> Double
func *(lhs: Float80, rhs: Float80) -> Float80
func *<T : _IntegerArithmeticType>(lhs: T, rhs: T) -> T
func +(lhs: UInt8, rhs: UInt8) -> UInt8
func +(lhs: Int8, rhs: Int8) -> Int8
func +(lhs: UInt16, rhs: UInt16) -> UInt16
func +(lhs: Int16, rhs: Int16) -> Int16
func +(lhs: UInt32, rhs: UInt32) -> UInt32
func +(lhs: Int32, rhs: Int32) -> Int32
func +(lhs: UInt64, rhs: UInt64) -> UInt64
func +(lhs: Int64, rhs: Int64) -> Int64
func +(lhs: UInt, rhs: UInt) -> UInt
func +(lhs: Int, rhs: Int) -> Int
prefix func +(x: Float) -> Float
func +(lhs: Float, rhs: Float) -> Float
prefix func +(x: Double) -> Double
func +(lhs: Double, rhs: Double) -> Double
prefix func +(x: Float80) -> Float80
func +(lhs: Float80, rhs: Float80) -> Float80
func +<T : _IntegerArithmeticType>(lhs: T, rhs: T) -> T
prefix func +<T : SignedNumberType>(x: T) -> T
func +<C : ExtensibleCollectionType, S : SequenceType where S.Generator.Element == C.Generator.Element>(lhs: C, rhs: S) -> C
func +<C : ExtensibleCollectionType, S : SequenceType where S.Generator.Element == C.Generator.Element>(lhs: S, rhs: C) -> C
func +<C : ExtensibleCollectionType, S : CollectionType where S.Generator.Element == C.Generator.Element>(lhs: C, rhs: S) -> C
func +<EC1 : ExtensibleCollectionType, EC2 : ExtensibleCollectionType where EC1.Generator.Element == EC2.Generator.Element>(lhs: EC1, rhs: EC2) -> EC1
func +<T : Strideable>(lhs: T, rhs: T.Stride) -> T
func +<T : Strideable>(lhs: T.Stride, rhs: T) -> T
func +<T : _UnsignedIntegerType>(lhs: T, rhs: T._DisallowMixedSignArithmetic) -> T
func +<T : _UnsignedIntegerType>(lhs: T._DisallowMixedSignArithmetic, rhs: T) -> T
@_semantics("string.concat") func +(lhs: String, rhs: String) -> String
func +<T>(lhs: UnsafeMutablePointer<T>, rhs: Int) -> UnsafeMutablePointer<T>
func +<T>(lhs: Int, rhs: UnsafeMutablePointer<T>) -> UnsafeMutablePointer<T>
func +<T>(lhs: UnsafePointer<T>, rhs: Int) -> UnsafePointer<T>
func +<T>(lhs: Int, rhs: UnsafePointer<T>) -> UnsafePointer<T>
func _swift_stdlib_atomicFetchAddInt32(object target: UnsafeMutablePointer<Int32>, operand: Int32) -> Int32
func -(lhs: UInt8, rhs: UInt8) -> UInt8
func -(lhs: Int8, rhs: Int8) -> Int8
func -(lhs: UInt16, rhs: UInt16) -> UInt16
func -(lhs: Int16, rhs: Int16) -> Int16
func -(lhs: UInt32, rhs: UInt32) -> UInt32
func -(lhs: Int32, rhs: Int32) -> Int32
func -(lhs: UInt64, rhs: UInt64) -> UInt64
func -(lhs: Int64, rhs: Int64) -> Int64
func -(lhs: UInt, rhs: UInt) -> UInt
func -(lhs: Int, rhs: Int) -> Int
prefix func -(x: Float) -> Float
func -(lhs: Float, rhs: Float) -> Float
prefix func -(x: Double) -> Double
func -(lhs: Double, rhs: Double) -> Double
prefix func -(x: Float80) -> Float80
func -(lhs: Float80, rhs: Float80) -> Float80
func -<T : _IntegerArithmeticType>(lhs: T, rhs: T) -> T
prefix func -<T : SignedNumberType>(x: T) -> T
func -<T : Strideable>(lhs: T, rhs: T.Stride) -> T
func -<T : Strideable>(lhs: T, rhs: T) -> T.Stride
func -<T : _UnsignedIntegerType>(lhs: T, rhs: T._DisallowMixedSignArithmetic) -> T
func -<T : _UnsignedIntegerType>(lhs: T, rhs: T) -> T._DisallowMixedSignArithmetic
func -<T>(lhs: UnsafeMutablePointer<T>, rhs: Int) -> UnsafeMutablePointer<T>
func -<T>(lhs: UnsafeMutablePointer<T>, rhs: UnsafeMutablePointer<T>) -> Int
func -<T>(lhs: UnsafePointer<T>, rhs: Int) -> UnsafePointer<T>
func -<T>(lhs: UnsafePointer<T>, rhs: UnsafePointer<T>) -> Int
struct FilterCollectionView<Base : CollectionType> : CollectionType, SequenceType, _CollectionDefaultsType, _CollectionGeneratorDefaultsType {
typealias Index = FilterCollectionViewIndex<Base>
init(_ base: Base, includeElement predicate: (Base.Generator.Element) -> Bool)
var startIndex: FilterCollectionViewIndex<Base> {
get {}
}
var endIndex: FilterCollectionViewIndex<Base> {
get {}
}
subscript (position: FilterCollectionViewIndex<Base>) -> Base.Generator.Element {
get {}
}
func generate() -> FilterGenerator<Base.Generator>
var _base: Base
var _include: (Base.Generator.Element) -> Bool
typealias _Element = Base.Generator.Element
typealias Generator = FilterGenerator<Base.Generator>
typealias _prext_SubSlice = _prext_Slice<FilterCollectionView<Base>>
}
struct _CocoaDictionaryStorage : _HashStorageType {
var cocoaDictionary: _NSDictionaryType
typealias Index = _CocoaDictionaryIndex
typealias SequenceElement = (AnyObject, AnyObject)
typealias Key = AnyObject
typealias Value = AnyObject
var startIndex: Index {
get {}
}
var endIndex: Index {
get {}
}
func indexForKey(key: Key) -> Index?
func assertingGet(i: Index) -> SequenceElement
func assertingGet(key: Key) -> Value
func maybeGet(key: Key) -> Value?
mutating func updateValue(value: Value, forKey: Key) -> Value?
mutating func removeAtIndex(index: Index)
mutating func removeValueForKey(key: Key) -> Value?
mutating func removeAll(keepCapacity keepCapacity: Bool)
var count: Int {
get {}
}
static func fromArray(elements: Array<SequenceElement>) -> _CocoaDictionaryStorage
init(cocoaDictionary: _NSDictionaryType)
}
func /(lhs: UInt8, rhs: UInt8) -> UInt8
func /(lhs: Int8, rhs: Int8) -> Int8
func /(lhs: UInt16, rhs: UInt16) -> UInt16
func /(lhs: Int16, rhs: Int16) -> Int16
func /(lhs: UInt32, rhs: UInt32) -> UInt32
func /(lhs: Int32, rhs: Int32) -> Int32
func /(lhs: UInt64, rhs: UInt64) -> UInt64
func /(lhs: Int64, rhs: Int64) -> Int64
func /(lhs: UInt, rhs: UInt) -> UInt
func /(lhs: Int, rhs: Int) -> Int
func /(lhs: Float, rhs: Float) -> Float
func /(lhs: Double, rhs: Double) -> Double
func /(lhs: Float80, rhs: Float80) -> Float80
func /<T : _IntegerArithmeticType>(lhs: T, rhs: T) -> T
protocol Equatable {
func ==(lhs: Self, rhs: Self) -> Bool
}
@asmname("swift_reportUnimplementedInitializer") func _reportUnimplementedInitializer(className: UnsafePointer<UInt8>, _ classNameLength: UWord, _ initName: UnsafePointer<UInt8>, _ initNameLength: UWord)
func |=(inout lhs: UInt8, rhs: UInt8)
func |=(inout lhs: Int8, rhs: Int8)
func |=(inout lhs: UInt16, rhs: UInt16)
func |=(inout lhs: Int16, rhs: Int16)
func |=(inout lhs: UInt32, rhs: UInt32)
func |=(inout lhs: Int32, rhs: Int32)
func |=(inout lhs: UInt64, rhs: UInt64)
func |=(inout lhs: Int64, rhs: Int64)
func |=(inout lhs: UInt, rhs: UInt)
func |=(inout lhs: Int, rhs: Int)
func |=<T : BitwiseOperationsType>(inout lhs: T, rhs: T)
func >=(lhs: UInt8, rhs: UInt8) -> Bool
func >=(lhs: Int8, rhs: Int8) -> Bool
func >=(lhs: UInt16, rhs: UInt16) -> Bool
func >=(lhs: Int16, rhs: Int16) -> Bool
func >=(lhs: UInt32, rhs: UInt32) -> Bool
func >=(lhs: Int32, rhs: Int32) -> Bool
func >=(lhs: UInt64, rhs: UInt64) -> Bool
func >=(lhs: Int64, rhs: Int64) -> Bool
func >=(lhs: UInt, rhs: UInt) -> Bool
func >=(lhs: Int, rhs: Int) -> Bool
func >=(lhs: Float, rhs: Float) -> Bool
func >=(lhs: Double, rhs: Double) -> Bool
func >=(lhs: Float80, rhs: Float80) -> Bool
func >=<T : Comparable>(lhs: T?, rhs: T?) -> Bool
func >=<T : Comparable>(lhs: T, rhs: T) -> Bool
func >=(left: _SwiftNSOperatingSystemVersion, right: _SwiftNSOperatingSystemVersion) -> Bool
func _fabs(x: Float) -> Float
func _fabs(x: Double) -> Double
@objc protocol _NSCopyingType : _ShadowProtocol {
@objc func copyWithZone(zone: _SwiftNSZone) -> AnyObject
}
func >>(lhs: UInt8, rhs: UInt8) -> UInt8
func >>(lhs: Int8, rhs: Int8) -> Int8
func >>(lhs: UInt16, rhs: UInt16) -> UInt16
func >>(lhs: Int16, rhs: Int16) -> Int16
func >>(lhs: UInt32, rhs: UInt32) -> UInt32
func >>(lhs: Int32, rhs: Int32) -> Int32
func >>(lhs: UInt64, rhs: UInt64) -> UInt64
func >>(lhs: Int64, rhs: Int64) -> Int64
func >>(lhs: UInt, rhs: UInt) -> UInt
func >>(lhs: Int, rhs: Int) -> Int
func <(lhs: Character, rhs: Character) -> Bool
func <(lhs: UInt8, rhs: UInt8) -> Bool
func <(lhs: Int8, rhs: Int8) -> Bool
func <(lhs: UInt16, rhs: UInt16) -> Bool
func <(lhs: Int16, rhs: Int16) -> Bool
func <(lhs: UInt32, rhs: UInt32) -> Bool
func <(lhs: Int32, rhs: Int32) -> Bool
func <(lhs: UInt64, rhs: UInt64) -> Bool
func <(lhs: Int64, rhs: Int64) -> Bool
func <(lhs: UInt, rhs: UInt) -> Bool
func <(lhs: Int, rhs: Int) -> Bool
func <(lhs: Float, rhs: Float) -> Bool
func <(lhs: Double, rhs: Double) -> Bool
func <(lhs: Float80, rhs: Float80) -> Bool
func <<T : Hashable>(lhs: _NativeSetIndex<T>, rhs: _NativeSetIndex<T>) -> Bool
func <(lhs: _CocoaSetIndex, rhs: _CocoaSetIndex) -> Bool
func <<T : Hashable>(lhs: SetIndex<T>, rhs: SetIndex<T>) -> Bool
func <<T : Hashable>(lhs: SetMirrorPosition<T>, rhs: Int) -> Bool
func <<Key : Hashable, Value>(lhs: _NativeDictionaryIndex<Key, Value>, rhs: _NativeDictionaryIndex<Key, Value>) -> Bool
func <(lhs: _CocoaDictionaryIndex, rhs: _CocoaDictionaryIndex) -> Bool
func <<Key : Hashable, Value>(lhs: DictionaryIndex<Key, Value>, rhs: DictionaryIndex<Key, Value>) -> Bool
func <<Key : Hashable, Value>(lhs: DictionaryMirrorPosition<Key, Value>, rhs: Int) -> Bool
func <<T : Comparable>(lhs: T?, rhs: T?) -> Bool
func <(lhs: ObjectIdentifier, rhs: ObjectIdentifier) -> Bool
func <<T : _Strideable>(x: T, y: T) -> Bool
func <(lhs: String, rhs: String) -> Bool
func <(lhs: Index, rhs: Index) -> Bool
func <(lhs: String.UnicodeScalarView.Index, rhs: String.UnicodeScalarView.Index) -> Bool
func <(lhs: String.UTF16View.Index, rhs: String.UTF16View.Index) -> Bool
func <(lhs: UnicodeScalar, rhs: UnicodeScalar) -> Bool
func <<T>(lhs: UnsafeMutablePointer<T>, rhs: UnsafeMutablePointer<T>) -> Bool
func <<T>(lhs: UnsafePointer<T>, rhs: UnsafePointer<T>) -> Bool
func <(left: _SwiftNSOperatingSystemVersion, right: _SwiftNSOperatingSystemVersion) -> Bool
func <(lhs: Bit, rhs: Bit) -> Bool
func >(lhs: UInt8, rhs: UInt8) -> Bool
func >(lhs: Int8, rhs: Int8) -> Bool
func >(lhs: UInt16, rhs: UInt16) -> Bool
func >(lhs: Int16, rhs: Int16) -> Bool
func >(lhs: UInt32, rhs: UInt32) -> Bool
func >(lhs: Int32, rhs: Int32) -> Bool
func >(lhs: UInt64, rhs: UInt64) -> Bool
func >(lhs: Int64, rhs: Int64) -> Bool
func >(lhs: UInt, rhs: UInt) -> Bool
func >(lhs: Int, rhs: Int) -> Bool
func >(lhs: Float, rhs: Float) -> Bool
func >(lhs: Double, rhs: Double) -> Bool
func >(lhs: Float80, rhs: Float80) -> Bool
func ><T : Hashable>(lhs: SetMirrorPosition<T>, rhs: Int) -> Bool
func ><Key : Hashable, Value>(lhs: DictionaryMirrorPosition<Key, Value>, rhs: Int) -> Bool
func ><T : Comparable>(lhs: T?, rhs: T?) -> Bool
func ><T : Comparable>(lhs: T, rhs: T) -> Bool
protocol _ObjectiveCBridgeable {
typealias _ObjectiveCType
static func _isBridgedToObjectiveC() -> Bool
static func _getObjectiveCType() -> Any.Type
func _bridgeToObjectiveC() -> Self._ObjectiveCType
static func _forceBridgeFromObjectiveC(source: Self._ObjectiveCType, inout result: Self?)
static func _conditionallyBridgeFromObjectiveC(source: Self._ObjectiveCType, inout result: Self?) -> Bool
}
struct ClosedInterval<T : Comparable> : IntervalType, Equatable, CustomStringConvertible, CustomDebugStringConvertible, Reflectable {
typealias Bound = T
init(_ x: ClosedInterval<T>)
init(_ start: T, _ end: T)
var start: T {
get {}
}
var end: T {
get {}
}
var description: String {
get {}
}
var debugDescription: String {
get {}
}
func contains(x: T) -> Bool
func clamp(intervalToClamp: ClosedInterval<T>) -> ClosedInterval<T>
func getMirror() -> MirrorType
var _start: T
var _end: T
}
func _makeSwiftNSFastEnumerationState() -> _SwiftNSFastEnumerationState
struct UnsafeBufferPointerGenerator<T> : GeneratorType, SequenceType {
mutating func next() -> T?
func generate() -> UnsafeBufferPointerGenerator<T>
var position: UnsafePointer<T>, end: UnsafePointer<T>
typealias Element = T
init(position: UnsafePointer<T>, end: UnsafePointer<T>)
typealias Generator = UnsafeBufferPointerGenerator<T>
}
@available(*, unavailable, message="access the 'count' property on the collection") func count<T : CollectionType>(x: T) -> T.Index.Distance
struct RandomAccessReverseView<T : CollectionType where T.Index : RandomAccessIndexType> : CollectionType, SequenceType, _CollectionDefaultsType, _CollectionGeneratorDefaultsType {
typealias Index = ReverseRandomAccessIndex<T.Index>
typealias Generator = IndexingGenerator<RandomAccessReverseView<T>>
init(_ _base: T)
func generate() -> IndexingGenerator<RandomAccessReverseView<T>>
var startIndex: ReverseRandomAccessIndex<T.Index> {
get {}
}
var endIndex: ReverseRandomAccessIndex<T.Index> {
get {}
}
subscript (position: ReverseRandomAccessIndex<T.Index>) -> T.Generator.Element {
get {}
}
var _base: T
typealias _Element = T.Generator.Element
typealias _prext_SubSlice = _prext_Slice<RandomAccessReverseView<T>>
}
protocol RangeReplaceableCollectionType : ExtensibleCollectionType {
mutating func append(x: Self.Generator.Element)
mutating func replaceRange<C : CollectionType where C.Generator.Element == Generator.Element>(subRange: Range<Self.Index>, with newElements: C)
mutating func insert(newElement: Self.Generator.Element, atIndex i: Self.Index)
mutating func splice<S : CollectionType where S.Generator.Element == Generator.Element>(newElements: S, atIndex i: Self.Index)
mutating func removeAtIndex(i: Self.Index) -> Self.Generator.Element
mutating func removeRange(subRange: Range<Self.Index>)
mutating func removeAll(keepCapacity keepCapacity: Bool)
}
protocol RandomAccessIndexType : BidirectionalIndexType, Strideable {
func distanceTo(other: Self) -> Self.Distance
func advancedBy(n: Self.Distance) -> Self
}
@available(*, unavailable, message="call the 'equal()' method on the sequence") func equal<S1 : SequenceType, S2 : SequenceType where S1.Generator.Element == S2.Generator.Element, S1.Generator.Element : Equatable>(a1: S1, _ a2: S2) -> Bool
@available(*, unavailable, message="call the 'equal()' method on the sequence") func equal<S1 : SequenceType, S2 : SequenceType where S1.Generator.Element == S2.Generator.Element>(a1: S1, _ a2: S2, @noescape _ isEquivalent: (S1.Generator.Element, S1.Generator.Element) -> Bool) -> Bool
func _setBridgeToObjectiveC<SwiftValue, ObjCValue>(source: Set<SwiftValue>) -> Set<ObjCValue>
func _parseUnsignedAsciiAsUIntMax(u16: String.UTF16View, _ radix: Int, _ maximum: UIntMax) -> UIntMax?
protocol SequenceType {
typealias Generator : GeneratorType
func generate() -> Self.Generator
func underestimateCount() -> Int
func map<T>(@noescape transform: (Self.Generator.Element) -> T) -> [T]
func filter(@noescape includeElement: (Self.Generator.Element) -> Bool) -> [Self.Generator.Element]
func _customContainsEquatableElement(element: Self.Generator.Element) -> Bool?
func _preprocessingPass<R>(preprocess: (Self) -> R) -> R?
func ~>(_: Self, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<Self.Generator.Element>
func ~>(source: Self, ptr: (_InitializeTo, UnsafeMutablePointer<Self.Generator.Element>))
}
func _rint(x: Float) -> Float
func _rint(x: Double) -> Double
@objc protocol _CocoaStringType {
}
func ^<T : _RawOptionSetType>(a: T, b: T) -> T
func ^(lhs: UInt8, rhs: UInt8) -> UInt8
func ^(lhs: Int8, rhs: Int8) -> Int8
func ^(lhs: UInt16, rhs: UInt16) -> UInt16
func ^(lhs: Int16, rhs: Int16) -> Int16
func ^(lhs: UInt32, rhs: UInt32) -> UInt32
func ^(lhs: Int32, rhs: Int32) -> Int32
func ^(lhs: UInt64, rhs: UInt64) -> UInt64
func ^(lhs: Int64, rhs: Int64) -> Int64
func ^(lhs: UInt, rhs: UInt) -> UInt
func ^(lhs: Int, rhs: Int) -> Int
func ??<T>(optional: T?, @autoclosure defaultValue: () -> T) -> T
func ??<T>(optional: T?, @autoclosure defaultValue: () -> T?) -> T?
func _swift_stdlib_atomicLoadInt64(object target: UnsafeMutablePointer<Int64>) -> Int64
@available(*, unavailable, message="call the 'contains()' method on the sequence") func contains<S : SequenceType, L : BooleanType>(seq: S, @noescape _ predicate: (S.Generator.Element) -> L) -> Bool
@available(*, unavailable, message="call the 'contains()' method on the sequence") func contains<S : SequenceType where S.Generator.Element : Equatable>(seq: S, _ x: S.Generator.Element) -> Bool
protocol _BuiltinBooleanLiteralConvertible {
init(_builtinBooleanLiteral value: Int1)
}
var _nilNativeObject: AnyObject? {
get {}
}
func _atREPLExit(handler: () -> ())
struct _ConcatenateSequenceGenerator<Outer : GeneratorType where Outer.Element : SequenceType> : GeneratorType, SequenceType {
init(_ outer: Outer)
mutating func next() -> Outer.Element.Generator.Element?
func generate() -> _ConcatenateSequenceGenerator<Outer>
var _outer: Outer
var _inner: Outer.Element.Generator?
typealias Element = Outer.Element.Generator.Element
typealias Generator = _ConcatenateSequenceGenerator<Outer>
}
let _x86_64CountGPRegisters: Int
protocol _SignedIntegerType : _IntegerType, SignedNumberType {
func toIntMax() -> IntMax
init(_: IntMax)
}
func _dumpWithMirror<TargetStream : OutputStreamType>(mirror: MirrorType, _ name: String?, _ indent: Int, _ maxDepth: Int, inout _ maxItemCounter: Int, inout _ visitedItems: [ObjectIdentifier : Int], inout _ targetStream: TargetStream)
struct FilterGenerator<Base : GeneratorType> : GeneratorType, SequenceType {
mutating func next() -> Base.Element?
func generate() -> FilterGenerator<Base>
var _base: Base
var _include: (Base.Element) -> Bool
typealias Element = Base.Element
init(_base: Base, _include: (Base.Element) -> Bool)
typealias Generator = FilterGenerator<Base>
}
@asmname("swift_stdlib_atomicLoadPtr") func _swift_stdlib_atomicLoadPtrImpl(object target: UnsafeMutablePointer<COpaquePointer>) -> COpaquePointer
enum _GraphemeClusterBreakPropertyValue : Int, CustomStringConvertible {
case Other
case CR
case LF
case Control
case Extend
case Regional_Indicator
case Prepend
case SpacingMark
case L
case V
case T
case LV
case LVT
var description: String {
get {}
}
typealias RawValue = Int
var hashValue: Int {
get {}
}
init?(rawValue: Int)
var rawValue: Int {
get {}
}
}
@inline(__always) func ||<T : BooleanType, U : BooleanType>(lhs: T, @autoclosure rhs: () -> U) -> Bool
func ||<T : BooleanType>(lhs: T, @autoclosure rhs: () -> Bool) -> Bool
struct _UnitTestArrayBuffer<T> : _ArrayBufferType, MutableCollectionType {
init(count: Int, minimumCapacity: Int)
init(_ storage: _ContiguousArrayStorageBase?)
var hasStorage: Bool {
get {}
}
func _getBaseAddress() -> UnsafeMutablePointer<T>
var arrayPropertyIsNative: Bool {
get {}
}
var arrayPropertyIsNativeNoTypeCheck: Bool {
get {}
}
var baseAddress: UnsafeMutablePointer<T> {
get {}
}
var _unsafeElementStorage: UnsafeMutablePointer<T> {
get {}
}
func withUnsafeBufferPointer<R>(@noescape body: (UnsafeBufferPointer<T>) -> R) -> R
mutating func withUnsafeMutableBufferPointer<R>(@noescape body: (UnsafeMutableBufferPointer<T>) -> R) -> R
typealias Element = T
init()
init(_ buffer: _ContiguousArrayBuffer<T>)
mutating func requestUniqueMutableBackingBuffer(minimumCapacity: Int) -> _ContiguousArrayBuffer<T>?
mutating func isMutableAndUniquelyReferenced() -> Bool
mutating func isMutableAndUniquelyReferencedOrPinned() -> Bool
func requestNativeBuffer() -> _ContiguousArrayBuffer<T>?
mutating func replace<C : CollectionType where C.Generator.Element == Element>(subRange subRange: Range<Int>, with newCount: Int, elementsOf newValues: C)
@inline(__always) func getElement(i: Int, hoistedIsNativeNoTypeCheckBuffer: Bool) -> T
subscript (i: Int) -> T {
get {}
nonmutating set {}
}
var count: Int {
get {}
nonmutating set {}
}
func _isValidSubscript(index: Int, hoistedIsNativeBuffer: Bool) -> Bool
var capacity: Int {
get {}
}
func _uninitializedCopy(subRange: Range<Int>, target: UnsafeMutablePointer<T>) -> UnsafeMutablePointer<T>
subscript (subRange: Range<Int>) -> _SliceBuffer<T> {
get {}
}
mutating func isUniquelyReferenced() -> Bool
mutating func isUniquelyReferencedOrPinned() -> Bool
func _asCocoaArray() -> _NSArrayCoreType
var owner: AnyObject {
get {}
}
var nativeOwner: AnyObject {
get {}
}
var identity: UnsafePointer<Void> {
get {}
}
func canStoreElementsOfDynamicType(proposedElementType: Any.Type) -> Bool
func storesOnlyElementsOfType<U>(_: U.Type) -> Bool
var _storage: _ContiguousArrayStorageBase? {
get {}
}
typealias _Base = _HeapBuffer<_ArrayBody, T>
var _base: _HeapBuffer<_ArrayBody, T>
}
func ~=<I : IntervalType>(pattern: I, value: I.Bound) -> Bool
func ~=<T>(lhs: _OptionalNilComparisonType, rhs: T?) -> Bool
func ~=<T : Equatable>(a: T, b: T) -> Bool
func ~=<I : ForwardIndexType where I : Comparable>(pattern: Range<I>, value: I) -> Bool
func |<T : _RawOptionSetType>(a: T, b: T) -> T
func |(lhs: UInt8, rhs: UInt8) -> UInt8
func |(lhs: Int8, rhs: Int8) -> Int8
func |(lhs: UInt16, rhs: UInt16) -> UInt16
func |(lhs: Int16, rhs: Int16) -> Int16
func |(lhs: UInt32, rhs: UInt32) -> UInt32
func |(lhs: Int32, rhs: Int32) -> Int32
func |(lhs: UInt64, rhs: UInt64) -> UInt64
func |(lhs: Int64, rhs: Int64) -> Int64
func |(lhs: UInt, rhs: UInt) -> UInt
func |(lhs: Int, rhs: Int) -> Int
func ~><A : __ArrayType>(source: A, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<A.Generator.Element>
func ~><T : _ArrayType>(source: T, ptr: (_InitializeTo, UnsafeMutablePointer<T.Generator.Element>))
func ~><S : SequenceType>(source: S, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<S.Generator.Element>
func ~><C : CollectionType>(source: C, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<C.Generator.Element>
func ~><T : ForwardIndexType>(start: T, rest: (_Distance, T)) -> T.Distance
func ~><T : ForwardIndexType>(start: T, rest: (_Advance, T.Distance)) -> T
func ~><T : ForwardIndexType>(start: T, rest: (_Advance, (T.Distance, T))) -> T
func ~><T : BidirectionalIndexType>(start: T, rest: (_Advance, T.Distance)) -> T
func ~><T : BidirectionalIndexType>(start: T, rest: (_Advance, (T.Distance, T))) -> T
func ~><T : RandomAccessIndexType>(start: T, rest: (_Distance, (T))) -> T.Distance
func ~><T : RandomAccessIndexType>(start: T, rest: (_Advance, (T.Distance))) -> T
func ~><T : RandomAccessIndexType>(start: T, rest: (_Advance, (T.Distance, T))) -> T
func ~><T : SignedNumberType>(x: T, _: (_Abs, ())) -> T
func ~><T : AbsoluteValuable>(x: T, _: (_Abs, ())) -> T
func ~><T : SequenceType>(source: T, ptr: (_InitializeTo, UnsafeMutablePointer<T.Generator.Element>))
@inline(__always) func ~>(start: String.UTF16View.Index, rest: (_Distance, (String.UTF16View.Index))) -> Distance
@inline(__always) func ~>(start: String.UTF16View.Index, rest: (_Advance, (Distance))) -> String.UTF16View.Index
@inline(__always) func ~>(start: String.UTF16View.Index, rest: (_Advance, (Distance, String.UTF16View.Index))) -> String.UTF16View.Index
func ~><Element>(source: AnySequence<Element>, ptr: (_InitializeTo, UnsafeMutablePointer<Element>))
func ~><Element>(source: AnySequence<Element>, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<Element>
func ~><Element>(source: AnyForwardCollection<Element>, ptr: (_InitializeTo, UnsafeMutablePointer<Element>))
func ~><Element>(source: AnyForwardCollection<Element>, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<Element>
func ~><Element>(source: AnyBidirectionalCollection<Element>, ptr: (_InitializeTo, UnsafeMutablePointer<Element>))
func ~><Element>(source: AnyBidirectionalCollection<Element>, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<Element>
func ~><Element>(source: AnyRandomAccessCollection<Element>, ptr: (_InitializeTo, UnsafeMutablePointer<Element>))
func ~><Element>(source: AnyRandomAccessCollection<Element>, _: (_CopyToNativeArrayBuffer, ())) -> _ContiguousArrayBuffer<Element>
func ~>(start: AnyForwardIndex, other: (_Distance, AnyForwardIndex)) -> Distance
func ~>(start: AnyForwardIndex, distance: (_Advance, Distance)) -> AnyForwardIndex
func ~>(start: AnyForwardIndex, args: (_Advance, (Distance, AnyForwardIndex))) -> AnyForwardIndex
func ~>(start: AnyBidirectionalIndex, other: (_Distance, AnyBidirectionalIndex)) -> Distance
func ~>(start: AnyBidirectionalIndex, distance: (_Advance, Distance)) -> AnyBidirectionalIndex
func ~>(start: AnyBidirectionalIndex, args: (_Advance, (Distance, AnyBidirectionalIndex))) -> AnyBidirectionalIndex
func ~>(start: AnyRandomAccessIndex, other: (_Distance, AnyRandomAccessIndex)) -> Distance
func ~>(start: AnyRandomAccessIndex, distance: (_Advance, Distance)) -> AnyRandomAccessIndex
func ~>(start: AnyRandomAccessIndex, args: (_Advance, (Distance, AnyRandomAccessIndex))) -> AnyRandomAccessIndex
enum ImplicitlyUnwrappedOptional<T> : Reflectable, NilLiteralConvertible {
case None
case Some(T)
init()
init(_ some: T)
init(_ v: T?)
init(nilLiteral: ())
func map<U>(@noescape f: (T) -> U) -> ImplicitlyUnwrappedOptional<U>
func flatMap<U>(@noescape f: (T) -> ImplicitlyUnwrappedOptional<U>) -> ImplicitlyUnwrappedOptional<U>
func getMirror() -> MirrorType
}
struct _UnsafePointerMirror<T> : MirrorType {
var _value: UnsafePointer<T>
init(_ x: UnsafePointer<T>)
var value: Any {
get {}
}
var valueType: Any.Type {
get {}
}
var objectIdentifier: ObjectIdentifier? {
get {}
}
var disposition: MirrorDisposition {
get {}
}
var count: Int {
get {}