-
Notifications
You must be signed in to change notification settings - Fork 0
/
System.Collections.Immutable.xml
12922 lines (12916 loc) · 760 KB
/
System.Collections.Immutable.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Collections.Immutable</name>
</assembly>
<members>
<member name="T:System.Collections.Generic.IHashKeyCollection`1">
<summary>
Defined on a generic collection that hashes its contents using an <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.
</summary>
<typeparam name="TKey">The type of element hashed in the collection.</typeparam>
</member>
<member name="P:System.Collections.Generic.IHashKeyCollection`1.KeyComparer">
<summary>
Gets the comparer used to obtain hash codes for the keys and check equality.
</summary>
</member>
<member name="T:System.Collections.Generic.ISortKeyCollection`1">
<summary>
Defined on a generic collection that sorts its contents using an <see cref="T:System.Collections.Generic.IComparer`1"/>.
</summary>
<typeparam name="TKey">The type of element sorted in the collection.</typeparam>
</member>
<member name="P:System.Collections.Generic.ISortKeyCollection`1.KeyComparer">
<summary>
Gets the comparer used to sort keys.
</summary>
</member>
<member name="T:System.Collections.Immutable.DisposableEnumeratorAdapter`2">
<summary>
An adapter that allows a single foreach loop in C# to avoid
boxing an enumerator when possible, but fall back to boxing when necessary.
</summary>
<typeparam name="T">The type of value to be enumerated.</typeparam>
<typeparam name="TEnumerator">The type of the enumerator struct.</typeparam>
</member>
<member name="F:System.Collections.Immutable.DisposableEnumeratorAdapter`2._enumeratorObject">
<summary>
The enumerator object to use if not null.
</summary>
</member>
<member name="F:System.Collections.Immutable.DisposableEnumeratorAdapter`2._enumeratorStruct">
<summary>
The enumerator struct to use if <see cref="F:System.Collections.Immutable.DisposableEnumeratorAdapter`2._enumeratorObject"/> is <c>null</c>.
</summary>
<remarks>
This field must NOT be readonly because the field's value is a struct and must be able to mutate
in-place. A readonly keyword would cause any mutation to take place in a copy rather than the field.
</remarks>
</member>
<member name="M:System.Collections.Immutable.DisposableEnumeratorAdapter`2.#ctor(`1)">
<summary>
Initializes a new instance of the <see cref="T:System.Collections.Immutable.DisposableEnumeratorAdapter`2"/> struct
for enumerating over a strongly typed struct enumerator.
</summary>
<param name="enumerator">The initialized enumerator struct.</param>
</member>
<member name="M:System.Collections.Immutable.DisposableEnumeratorAdapter`2.#ctor(System.Collections.Generic.IEnumerator{`0})">
<summary>
Initializes a new instance of the <see cref="T:System.Collections.Immutable.DisposableEnumeratorAdapter`2"/> struct
for enumerating over a (boxed) <see cref="T:System.Collections.Generic.IEnumerable`1"/> enumerator.
</summary>
<param name="enumerator">The initialized enumerator object.</param>
</member>
<member name="P:System.Collections.Immutable.DisposableEnumeratorAdapter`2.Current">
<summary>
Gets the current enumerated value.
</summary>
</member>
<member name="M:System.Collections.Immutable.DisposableEnumeratorAdapter`2.MoveNext">
<summary>
Moves to the next value.
</summary>
</member>
<member name="M:System.Collections.Immutable.DisposableEnumeratorAdapter`2.Dispose">
<summary>
Disposes the underlying enumerator.
</summary>
</member>
<member name="M:System.Collections.Immutable.DisposableEnumeratorAdapter`2.GetEnumerator">
<summary>
Returns a copy of this struct.
</summary>
<remarks>
This member is here so that it can be used in C# foreach loops.
</remarks>
</member>
<member name="T:System.Collections.Immutable.IBinaryTree">
<summary>
An interface for binary tree nodes that allow our common enumerator to walk the graph.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree.Height">
<summary>
Gets the depth of the tree below this node.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree.IsEmpty">
<summary>
Gets a value indicating whether this node is empty.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree.Count">
<summary>
Gets the number of non-empty nodes at this node and below.
</summary>
<exception cref="T:System.NotSupportedException">Thrown if the implementation does not store this value at the node.</exception>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree.Left">
<summary>
Gets the left branch of this node.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree.Right">
<summary>
Gets the right branch of this node.
</summary>
</member>
<member name="T:System.Collections.Immutable.IBinaryTree`1">
<summary>
An interface for binary tree nodes that allow our common enumerator to walk the graph.
</summary>
<typeparam name="T">The type of value for each node.</typeparam>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree`1.Value">
<summary>
Gets the value represented by the current node.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree`1.Left">
<summary>
Gets the left branch of this node.
</summary>
</member>
<member name="P:System.Collections.Immutable.IBinaryTree`1.Right">
<summary>
Gets the right branch of this node.
</summary>
</member>
<member name="T:System.Collections.Immutable.IImmutableArray">
<summary>
An internal non-generic interface implemented by <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
that allows for recognition of an <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> instance and access
to its underlying array, without actually knowing the type of value
stored in it.
</summary>
<remarks>
Casting to this interface requires a boxed instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> struct,
and as such should be avoided. This interface is useful, however, where the value
is already boxed and we want to try to reuse immutable arrays instead of copying them.
** This interface is INTENTIONALLY INTERNAL, as it gives access to the inner array. **
</remarks>
</member>
<member name="P:System.Collections.Immutable.IImmutableArray.Array">
<summary>
Gets an untyped reference to the array.
</summary>
</member>
<member name="T:System.Collections.Immutable.IImmutableDictionary`2">
<summary>
An immutable key-value dictionary.
</summary>
<typeparam name="TKey">The type of the key.</typeparam>
<typeparam name="TValue">The type of the value.</typeparam>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.Clear">
<summary>
Gets an empty dictionary with equivalent ordering and key/value comparison rules.
</summary>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.Add(`0,`1)">
<summary>
Adds the specified key and value to the dictionary.
</summary>
<param name="key">The key of the entry to add.</param>
<param name="value">The value of the entry to add.</param>
<returns>The new dictionary containing the additional key-value pair.</returns>
<exception cref="T:System.ArgumentException">Thrown when the given key already exists in the dictionary but has a different value.</exception>
<remarks>
If the given key-value pair are already in the dictionary, the existing instance is returned.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
<summary>
Adds the specified key-value pairs to the dictionary.
</summary>
<param name="pairs">The pairs.</param>
<returns>The new dictionary containing the additional key-value pairs.</returns>
<exception cref="T:System.ArgumentException">Thrown when one of the given keys already exists in the dictionary but has a different value.</exception>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.SetItem(`0,`1)">
<summary>
Sets the specified key and value to the dictionary, possibly overwriting an existing value for the given key.
</summary>
<param name="key">The key of the entry to add.</param>
<param name="value">The value of the entry to add.</param>
<returns>The new dictionary containing the additional key-value pair.</returns>
<remarks>
If the given key-value pair are already in the dictionary, the existing instance is returned.
If the key already exists but with a different value, a new instance with the overwritten value will be returned.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
<summary>
Applies a given set of key=value pairs to an immutable dictionary, replacing any conflicting keys in the resulting dictionary.
</summary>
<param name="items">The key=value pairs to set on the dictionary. Any keys that conflict with existing keys will overwrite the previous values.</param>
<returns>An immutable dictionary.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Removes the specified keys from the dictionary with their associated values.
</summary>
<param name="keys">The keys to remove.</param>
<returns>A new dictionary with those keys removed; or this instance if those keys are not in the dictionary.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.Remove(`0)">
<summary>
Removes the specified key from the dictionary with its associated value.
</summary>
<param name="key">The key to remove.</param>
<returns>A new dictionary with the matching entry removed; or this instance if the key is not in the dictionary.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
<summary>
Determines whether this dictionary contains the specified key-value pair.
</summary>
<param name="pair">The key value pair.</param>
<returns>
<c>true</c> if this dictionary contains the key-value pair; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionary`2.TryGetKey(`0,`0@)">
<summary>
Searches the dictionary for a given key and returns the equal key it finds, if any.
</summary>
<param name="equalKey">The key to search for.</param>
<param name="actualKey">The key from the dictionary that the search found, or <paramref name="equalKey"/> if the search yielded no match.</param>
<returns>A value indicating whether the search was successful.</returns>
<remarks>
This can be useful when you want to reuse a previously stored reference instead of
a newly constructed one (so that more sharing of references can occur) or to look up
the canonical value, or a value that has more complete data than the value you currently have,
although their comparer functions indicate they are equal.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableDictionaryInternal`2.ContainsValue(`1)">
<summary>
Determines whether the <see cref="T:System.Collections.Immutable.ImmutableDictionary`2"/>
contains an element with the specified value.
</summary>
<param name="value">
The value to locate in the <see cref="T:System.Collections.Immutable.ImmutableDictionary`2"/>.
The value can be null for reference types.
</param>
<returns>
true if the <see cref="T:System.Collections.Immutable.ImmutableDictionary`2"/> contains
an element with the specified value; otherwise, false.
</returns>
</member>
<member name="T:System.Collections.Immutable.IImmutableList`1">
<summary>
A list of elements that can only be modified by creating a new instance of the list.
</summary>
<typeparam name="T">The type of element stored in the list.</typeparam>
<remarks>
Mutations on this list generate new lists. Incremental changes to a list share as much memory as possible with the prior versions of a list,
while allowing garbage collection to clean up any unique list data that is no longer being referenced.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.Clear">
<summary>
Gets an empty list that retains the same sort semantics that this instance has.
</summary>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Searches for the specified object and returns the zero-based index of the
first occurrence within the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/>
that starts at the specified index and contains the specified number of elements.
</summary>
<param name="item">
The object to locate in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/>. The value
can be null for reference types.
</param>
<param name="index">
The zero-based starting index of the search. 0 (zero) is valid in an empty
list.
</param>
<param name="count">
The number of elements in the section to search.
</param>
<param name="equalityComparer">
The equality comparer to use in the search.
If <c>null</c>, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default"/> is used.
</param>
<returns>
The zero-based index of the first occurrence of item within the range of
elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that starts at index and
contains count number of elements, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Searches for the specified object and returns the zero-based index of the
last occurrence within the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/>
that contains the specified number of elements and ends at the specified
index.
</summary>
<param name="item">
The object to locate in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/>. The value
can be null for reference types.
</param>
<param name="index">The starting position of the search. The search proceeds from <paramref name="index"/> toward the beginning of this instance.</param>
<param name="count">The number of elements in the section to search.</param>
<param name="equalityComparer">
The equality comparer to use in the search.
If <c>null</c>, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default"/> is used.
</param>
<returns>
The zero-based index of the last occurrence of <paramref name="item"/> within the range of elements
in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that contains <paramref name="count"/> number of elements
and ends at <paramref name="index"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.Add(`0)">
<summary>
Adds the specified value to this list.
</summary>
<param name="value">The value to add.</param>
<returns>A new list with the element added.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds the specified values to this list.
</summary>
<param name="items">The values to add.</param>
<returns>A new list with the elements added.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.Insert(System.Int32,`0)">
<summary>
Inserts the specified value at the specified index.
</summary>
<param name="index">The index at which to insert the value.</param>
<param name="element">The element to insert.</param>
<returns>The new immutable list.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
<summary>
Inserts the specified values at the specified index.
</summary>
<param name="index">The index at which to insert the value.</param>
<param name="items">The elements to insert.</param>
<returns>The new immutable list.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Removes the specified value from this list.
</summary>
<param name="value">The value to remove.</param>
<param name="equalityComparer">
The equality comparer to use in the search.
If <c>null</c>, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default"/> is used.
</param>
<returns>A new list with the element removed, or this list if the element is not in this list.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.RemoveAll(System.Predicate{`0})">
<summary>
Removes all the elements that match the conditions defined by the specified
predicate.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the elements
to remove.
</param>
<returns>
The new list.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Removes the specified values from this list.
</summary>
<param name="items">The items to remove if matches are found in this list.</param>
<param name="equalityComparer">
The equality comparer to use in the search.
If <c>null</c>, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default"/> is used.
</param>
<returns>
A new list with the elements removed.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes the specified values from this list.
</summary>
<param name="index">The starting index to begin removal.</param>
<param name="count">The number of elements to remove.</param>
<returns>
A new list with the elements removed.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.RemoveAt(System.Int32)">
<summary>
Removes the element at the specified index.
</summary>
<param name="index">The index.</param>
<returns>A new list with the elements removed.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.SetItem(System.Int32,`0)">
<summary>
Replaces an element in the list at a given position with the specified element.
</summary>
<param name="index">The position in the list of the element to replace.</param>
<param name="value">The element to replace the old element with.</param>
<returns>The new list -- even if the value being replaced is equal to the new value for that position.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Replaces the first equal element in the list with the specified element.
</summary>
<param name="oldValue">The element to replace.</param>
<param name="newValue">The element to replace the old element with.</param>
<param name="equalityComparer">
The equality comparer to use in the search.
If <c>null</c>, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default"/> is used.
</param>
<returns>The new list -- even if the value being replaced is equal to the new value for that position.</returns>
<exception cref="T:System.ArgumentException">Thrown when the old value does not exist in the list.</exception>
</member>
<member name="T:System.Collections.Immutable.IImmutableListQueries`1">
<summary>
An interface that describes the methods that the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> and <see cref="T:System.Collections.Immutable.ImmutableList`1.Builder"/> types have in common.
</summary>
<typeparam name="T">The type of element in the collection.</typeparam>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.ConvertAll``1(System.Func{`0,``0})">
<summary>
Converts the elements in the current <see cref="T:System.Collections.Immutable.ImmutableList`1"/> to
another type, and returns a list containing the converted elements.
</summary>
<param name="converter">
A <see cref="T:System.Func`2"/> delegate that converts each element from
one type to another type.
</param>
<typeparam name="TOutput">
The type of the elements of the target array.
</typeparam>
<returns>
A <see cref="T:System.Collections.Immutable.ImmutableList`1"/> of the target type containing the converted
elements from the current <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.ForEach(System.Action{`0})">
<summary>
Performs the specified action on each element of the list.
</summary>
<param name="action">The <see cref="T:System.Action`1"/> delegate to perform on each element of the list.</param>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.GetRange(System.Int32,System.Int32)">
<summary>
Creates a shallow copy of a range of elements in the source <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</summary>
<param name="index">
The zero-based <see cref="T:System.Collections.Immutable.ImmutableList`1"/> index at which the range
starts.
</param>
<param name="count">
The number of elements in the range.
</param>
<returns>
A shallow copy of a range of elements in the source <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.CopyTo(`0[])">
<summary>
Copies the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/> to a compatible one-dimensional
array, starting at the beginning of the target array.
</summary>
<param name="array">
The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements
copied from <see cref="T:System.Collections.Immutable.ImmutableList`1"/>. The <see cref="T:System.Array"/> must have
zero-based indexing.
</param>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.CopyTo(`0[],System.Int32)">
<summary>
Copies the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/> to a compatible one-dimensional
array, starting at the specified index of the target array.
</summary>
<param name="array">
The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements
copied from <see cref="T:System.Collections.Immutable.ImmutableList`1"/>. The <see cref="T:System.Array"/> must have
zero-based indexing.
</param>
<param name="arrayIndex">
The zero-based index in <paramref name="array"/> at which copying begins.
</param>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
<summary>
Copies a range of elements from the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> to
a compatible one-dimensional array, starting at the specified index of the
target array.
</summary>
<param name="index">
The zero-based index in the source <see cref="T:System.Collections.Immutable.ImmutableList`1"/> at
which copying begins.
</param>
<param name="array">
The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements
copied from <see cref="T:System.Collections.Immutable.ImmutableList`1"/>. The <see cref="T:System.Array"/> must have
zero-based indexing.
</param>
<param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<param name="count">The number of elements to copy.</param>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.Exists(System.Predicate{`0})">
<summary>
Determines whether the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> contains elements
that match the conditions defined by the specified predicate.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the elements
to search for.
</param>
<returns>
true if the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> contains one or more elements
that match the conditions defined by the specified predicate; otherwise,
false.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.Find(System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the first occurrence within the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.
</param>
<returns>
The first element that matches the conditions defined by the specified predicate,
if found; otherwise, the default value for type <typeparamref name="T"/>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindAll(System.Predicate{`0})">
<summary>
Retrieves all the elements that match the conditions defined by the specified
predicate.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the elements
to search for.
</param>
<returns>
A <see cref="T:System.Collections.Immutable.ImmutableList`1"/> containing all the elements that match
the conditions defined by the specified predicate, if found; otherwise, an
empty <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindIndex(System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the first occurrence within
the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.
</param>
<returns>
The zero-based index of the first occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindIndex(System.Int32,System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the first occurrence within
the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that extends
from the specified index to the last element.
</summary>
<param name="startIndex">The zero-based starting index of the search.</param>
<param name="match">The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element to search for.</param>
<returns>
The zero-based index of the first occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the first occurrence within
the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that starts
at the specified index and contains the specified number of elements.
</summary>
<param name="startIndex">The zero-based starting index of the search.</param>
<param name="count">The number of elements in the section to search.</param>
<param name="match">The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element to search for.</param>
<returns>
The zero-based index of the first occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindLast(System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the last occurrence within the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.
</param>
<returns>
The last element that matches the conditions defined by the specified predicate,
if found; otherwise, the default value for type <typeparamref name="T"/>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindLastIndex(System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the last occurrence within
the entire <see cref="T:System.Collections.Immutable.ImmutableList`1"/>.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.
</param>
<returns>
The zero-based index of the last occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindLastIndex(System.Int32,System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the last occurrence within
the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that extends
from the first element to the specified index.
</summary>
<param name="startIndex">The zero-based starting index of the backward search.</param>
<param name="match">The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.</param>
<returns>
The zero-based index of the last occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
<summary>
Searches for an element that matches the conditions defined by the specified
predicate, and returns the zero-based index of the last occurrence within
the range of elements in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> that contains
the specified number of elements and ends at the specified index.
</summary>
<param name="startIndex">The zero-based starting index of the backward search.</param>
<param name="count">The number of elements in the section to search.</param>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the element
to search for.
</param>
<returns>
The zero-based index of the last occurrence of an element that matches the
conditions defined by <paramref name="match"/>, if found; otherwise, -1.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.TrueForAll(System.Predicate{`0})">
<summary>
Determines whether every element in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/>
matches the conditions defined by the specified predicate.
</summary>
<param name="match">
The <see cref="T:System.Predicate`1"/> delegate that defines the conditions to check against
the elements.
</param>
<returns>
true if every element in the <see cref="T:System.Collections.Immutable.ImmutableList`1"/> matches the
conditions defined by the specified predicate; otherwise, false. If the list
has no elements, the return value is true.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.BinarySearch(`0)">
<summary>
Searches the entire sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/> for an element
using the default comparer and returns the zero-based index of the element.
</summary>
<param name="item">The object to locate. The value can be null for reference types.</param>
<returns>
The zero-based index of <paramref name="item"/> in the sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/>,
if <paramref name="item"/> is found; otherwise, a negative number that is the bitwise complement
of the index of the next element that is larger than <paramref name="item"/> or, if there is
no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.IReadOnlyCollection`1.Count"/>.
</returns>
<exception cref="T:System.InvalidOperationException">
The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"/> cannot
find an implementation of the <see cref="T:System.IComparable`1"/> generic interface or
the <see cref="T:System.IComparable"/> interface for type <typeparamref name="T"/>.
</exception>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
<summary>
Searches the entire sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/> for an element
using the specified comparer and returns the zero-based index of the element.
</summary>
<param name="item">The object to locate. The value can be null for reference types.</param>
<param name="comparer">
The <see cref="T:System.Collections.Generic.IComparer`1"/> implementation to use when comparing
elements.-or-null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"/>.
</param>
<returns>
The zero-based index of <paramref name="item"/> in the sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/>,
if <paramref name="item"/> is found; otherwise, a negative number that is the bitwise complement
of the index of the next element that is larger than <paramref name="item"/> or, if there is
no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.IReadOnlyCollection`1.Count"/>.
</returns>
<exception cref="T:System.InvalidOperationException">
<paramref name="comparer"/> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"/>
cannot find an implementation of the <see cref="T:System.IComparable`1"/> generic interface
or the <see cref="T:System.IComparable"/> interface for type <typeparamref name="T"/>.
</exception>
</member>
<member name="M:System.Collections.Immutable.IImmutableListQueries`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
<summary>
Searches a range of elements in the sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/>
for an element using the specified comparer and returns the zero-based index
of the element.
</summary>
<param name="index">The zero-based starting index of the range to search.</param>
<param name="count"> The length of the range to search.</param>
<param name="item">The object to locate. The value can be null for reference types.</param>
<param name="comparer">
The <see cref="T:System.Collections.Generic.IComparer`1"/> implementation to use when comparing
elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"/>.
</param>
<returns>
The zero-based index of <paramref name="item"/> in the sorted <see cref="T:System.Collections.Generic.IReadOnlyList`1"/>,
if <paramref name="item"/> is found; otherwise, a negative number that is the bitwise complement
of the index of the next element that is larger than <paramref name="item"/> or, if there is
no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.IReadOnlyCollection`1.Count"/>.
</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index"/> is less than 0.-or-<paramref name="count"/> is less than 0.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="index"/> and <paramref name="count"/> do not denote a valid range in the <see cref="T:System.Collections.Generic.IReadOnlyList`1"/>.
</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="comparer"/> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"/>
cannot find an implementation of the <see cref="T:System.IComparable`1"/> generic interface
or the <see cref="T:System.IComparable"/> interface for type <typeparamref name="T"/>.
</exception>
</member>
<member name="T:System.Collections.Immutable.IImmutableQueue`1">
<summary>
An immutable queue.
</summary>
<typeparam name="T">The type of elements in the queue.</typeparam>
</member>
<member name="P:System.Collections.Immutable.IImmutableQueue`1.IsEmpty">
<summary>
Gets a value indicating whether this is the empty queue.
</summary>
<value>
<c>true</c> if this queue is empty; otherwise, <c>false</c>.
</value>
</member>
<member name="M:System.Collections.Immutable.IImmutableQueue`1.Clear">
<summary>
Gets an empty queue.
</summary>
</member>
<member name="M:System.Collections.Immutable.IImmutableQueue`1.Peek">
<summary>
Gets the element at the front of the queue.
</summary>
<returns>
The element at the front of the queue.
</returns>
<exception cref="T:System.InvalidOperationException">Thrown when the queue is empty.</exception>
</member>
<member name="M:System.Collections.Immutable.IImmutableQueue`1.Enqueue(`0)">
<summary>
Adds an element to the back of the queue.
</summary>
<param name="value">The value.</param>
<returns>
The new queue.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableQueue`1.Dequeue">
<summary>
Returns a queue that is missing the front element.
</summary>
<returns>A queue; never <c>null</c>.</returns>
<exception cref="T:System.InvalidOperationException">Thrown when the queue is empty.</exception>
</member>
<member name="T:System.Collections.Immutable.IImmutableSet`1">
<summary>
A set of elements that can only be modified by creating a new instance of the set.
</summary>
<typeparam name="T">The type of element stored in the set.</typeparam>
<remarks>
Mutations on this set generate new sets. Incremental changes to a set share as much memory as possible with the prior versions of a set,
while allowing garbage collection to clean up any unique set data that is no longer being referenced.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Clear">
<summary>
Gets an empty set that retains the same sort or unordered semantics that this instance has.
</summary>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Contains(`0)">
<summary>
Determines whether this set contains the specified value.
</summary>
<param name="value">The value.</param>
<returns>
<c>true</c> if the set contains the specified value; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Add(`0)">
<summary>
Adds the specified value to this set.
</summary>
<param name="value">The value to add.</param>
<returns>A new set with the element added, or this set if the element is already in this set.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Remove(`0)">
<summary>
Removes the specified value from this set.
</summary>
<param name="value">The value to remove.</param>
<returns>A new set with the element removed, or this set if the element is not in this set.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.TryGetValue(`0,`0@)">
<summary>
Searches the set for a given value and returns the equal value it finds, if any.
</summary>
<param name="equalValue">The value to search for.</param>
<param name="actualValue">The value from the set that the search found, or <paramref name="equalValue"/> if the search yielded no match.</param>
<returns>A value indicating whether the search was successful.</returns>
<remarks>
This can be useful when you want to reuse a previously stored reference instead of
a newly constructed one (so that more sharing of references can occur) or to look up
a value that has more complete data than the value you currently have, although their
comparer functions indicate they are equal.
</remarks>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Intersect(System.Collections.Generic.IEnumerable{`0})">
<summary>
Produces a set that contains elements that exist in both this set and the specified set.
</summary>
<param name="other">The set to intersect with this one.</param>
<returns>A new set that contains any elements that exist in both sets.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Except(System.Collections.Generic.IEnumerable{`0})">
<summary>
Removes a given set of items from this set.
</summary>
<param name="other">The items to remove from this set.</param>
<returns>The new set with the items removed; or the original set if none of the items were in the set.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
<summary>
Produces a set that contains elements either in this set or a given sequence, but not both.
</summary>
<param name="other">The other sequence of items.</param>
<returns>The new set.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Union(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds a given set of items to this set.
</summary>
<param name="other">The items to add.</param>
<returns>The new set with the items added; or the original set if all the items were already in the set.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
<summary>
Checks whether a given sequence of items entirely describe the contents of this set.
</summary>
<param name="other">The sequence of items to check against this set.</param>
<returns>A value indicating whether the sets are equal.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
<summary>
Determines whether the current set is a proper (strict) subset of a specified collection.
</summary>
<param name="other">The collection to compare to the current set.</param>
<returns>true if the current set is a correct subset of other; otherwise, false.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
<summary>
Determines whether the current set is a proper superset of a specified collection.
</summary>
<param name="other">The collection to compare to the current set.</param>
<returns>true if the current set is a correct superset of other; otherwise, false.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
<summary>
Determines whether a set is a subset of a specified collection.
</summary>
<param name="other">The collection to compare to the current set.</param>
<returns>true if the current set is a subset of other; otherwise, false.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
<summary>
Determines whether the current set is a superset of a specified collection.
</summary>
<param name="other">The collection to compare to the current set.</param>
<returns>true if the current set is a superset of other; otherwise, false.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
<summary>
Determines whether the current set overlaps with the specified collection.
</summary>
<param name="other">The collection to compare to the current set.</param>
<returns>true if the current set and other share at least one common element; otherwise, false.</returns>
</member>
<member name="T:System.Collections.Immutable.IImmutableStack`1">
<summary>
An immutable stack.
</summary>
<typeparam name="T">The type of elements stored in the stack.</typeparam>
</member>
<member name="P:System.Collections.Immutable.IImmutableStack`1.IsEmpty">
<summary>
Gets a value indicating whether this is the empty stack.
</summary>
<value>
<c>true</c> if this stack is empty; otherwise, <c>false</c>.
</value>
</member>
<member name="M:System.Collections.Immutable.IImmutableStack`1.Clear">
<summary>
Gets an empty stack.
</summary>
</member>
<member name="M:System.Collections.Immutable.IImmutableStack`1.Push(`0)">
<summary>
Pushes an element onto a stack and returns the new stack.
</summary>
<param name="value">The element to push onto the stack.</param>
<returns>The new stack.</returns>
</member>
<member name="M:System.Collections.Immutable.IImmutableStack`1.Pop">
<summary>
Pops the top element off the stack.
</summary>
<returns>The new stack; never <c>null</c></returns>
<exception cref="T:System.InvalidOperationException">Thrown when the stack is empty.</exception>
</member>
<member name="M:System.Collections.Immutable.IImmutableStack`1.Peek">
<summary>
Gets the element on the top of the stack.
</summary>
<exception cref="T:System.InvalidOperationException">Thrown when the stack is empty.</exception>
</member>
<member name="T:System.Collections.Immutable.IStrongEnumerable`2">
<summary>
An interface that must be implemented by collections that want to avoid
boxing their own enumerators when using the
<see cref="M:System.Collections.Immutable.ImmutableExtensions.GetEnumerableDisposable``2(System.Collections.Generic.IEnumerable{``0})"/>
method.
</summary>
<typeparam name="T">The type of value to be enumerated.</typeparam>
<typeparam name="TEnumerator">The type of the enumerator struct.</typeparam>
</member>
<member name="M:System.Collections.Immutable.IStrongEnumerable`2.GetEnumerator">
<summary>
Gets the strongly-typed enumerator.
</summary>
<returns></returns>
</member>
<member name="T:System.Collections.Immutable.IStrongEnumerator`1">
<summary>
An <see cref="T:System.Collections.Generic.IEnumerator`1"/>-like interface that does not derive from <see cref="T:System.IDisposable"/>.
</summary>
<typeparam name="T">The type of value to be enumerated.</typeparam>
<remarks>
This interface is useful because some enumerator struct types do not want to implement
<see cref="T:System.IDisposable"/> since it increases the size of the generated code in foreach.
</remarks>
</member>
<member name="P:System.Collections.Immutable.IStrongEnumerator`1.Current">
<summary>
Returns the current element.
</summary>
</member>
<member name="M:System.Collections.Immutable.IStrongEnumerator`1.MoveNext">
<summary>
Advances to the next element.
</summary>
</member>
<member name="T:System.Collections.Immutable.SortedInt32KeyNode`1">
<summary>
A node in the AVL tree storing key/value pairs with Int32 keys.
</summary>
<remarks>
This is a trimmed down version of <see cref="T:System.Collections.Immutable.ImmutableSortedDictionary`2.Node"/>