-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathImmutableInterlocked.xml
More file actions
1158 lines (1158 loc) · 86.9 KB
/
ImmutableInterlocked.xml
File metadata and controls
1158 lines (1158 loc) · 86.9 KB
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
<Type Name="ImmutableInterlocked" FullName="System.Collections.Immutable.ImmutableInterlocked">
<TypeSignature Language="C#" Value="public static class ImmutableInterlocked" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit ImmutableInterlocked extends System.Object" />
<TypeSignature Language="DocId" Value="T:System.Collections.Immutable.ImmutableInterlocked" />
<TypeSignature Language="VB.NET" Value="Public Class ImmutableInterlocked" />
<TypeSignature Language="F#" Value="type ImmutableInterlocked = class" />
<TypeSignature Language="C++ CLI" Value="public ref class ImmutableInterlocked abstract sealed" />
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.1</AssemblyVersion>
<AssemblyVersion>10.0.0.2</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Contains interlocked exchange mechanisms for immutable collections.</summary>
<remarks>To be added.</remarks>
<threadsafe>This type is thread safe.</threadsafe>
</Docs>
<Members>
<Member MemberName="AddOrUpdate<TKey,TValue>">
<MemberSignature Language="C#" Value="public static TValue AddOrUpdate<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, Func<TKey,TValue> addValueFactory, Func<TKey,TValue,TValue> updateValueFactory);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TValue AddOrUpdate<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, class System.Func`2<!!TKey, !!TValue> addValueFactory, class System.Func`3<!!TKey, !!TValue, !!TValue> updateValueFactory) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1},System.Func{``0,``1,``1})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AddOrUpdate(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, addValueFactory As Func(Of TKey, TValue), updateValueFactory As Func(Of TKey, TValue, TValue)) As TValue" />
<MemberSignature Language="F#" Value="static member AddOrUpdate : ImmutableDictionary * 'Key * Func<'Key, 'Value> * Func<'Key, 'Value, 'Value> -> 'Value" Usage="System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate (location, key, addValueFactory, updateValueFactory)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static TValue AddOrUpdate(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, Func<TKey, TValue> ^ addValueFactory, Func<TKey, TValue, TValue> ^ updateValueFactory);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="addValueFactory" Type="System.Func<TKey,TValue>" />
<Parameter Name="updateValueFactory" Type="System.Func<TKey,TValue,TValue>" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of key stored by the dictionary.</typeparam>
<typeparam name="TValue">The type of value stored by the dictionary.</typeparam>
<param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
<param name="key">The key for the value to add or update.</param>
<param name="addValueFactory">The function that receives the key and returns a new value to add to the dictionary when no value previously exists.</param>
<param name="updateValueFactory">The function that receives the key and prior value and returns the new value with which to update the dictionary.</param>
<summary>Obtains the value from a dictionary after having added it or updated an existing entry.</summary>
<returns>The added or updated value.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AddOrUpdate<TKey,TValue>">
<MemberSignature Language="C#" Value="public static TValue AddOrUpdate<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, TValue addValue, Func<TKey,TValue,TValue> updateValueFactory);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TValue AddOrUpdate<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, !!TValue addValue, class System.Func`3<!!TKey, !!TValue, !!TValue> updateValueFactory) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,System.Func{``0,``1,``1})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AddOrUpdate(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, addValue As TValue, updateValueFactory As Func(Of TKey, TValue, TValue)) As TValue" />
<MemberSignature Language="F#" Value="static member AddOrUpdate : ImmutableDictionary * 'Key * 'Value * Func<'Key, 'Value, 'Value> -> 'Value" Usage="System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate (location, key, addValue, updateValueFactory)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static TValue AddOrUpdate(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, TValue addValue, Func<TKey, TValue, TValue> ^ updateValueFactory);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="addValue" Type="TValue" />
<Parameter Name="updateValueFactory" Type="System.Func<TKey,TValue,TValue>" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of key stored by the dictionary.</typeparam>
<typeparam name="TValue">The type of value stored by the dictionary.</typeparam>
<param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
<param name="key">The key for the value to add or update.</param>
<param name="addValue">The value to use if no previous value exists.</param>
<param name="updateValueFactory">The function that receives the key and prior value and returns the new value with which to update the dictionary.</param>
<summary>Obtains the value from a dictionary after having added it or updated an existing entry.</summary>
<returns>The added or updated value.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Enqueue<T>">
<MemberSignature Language="C#" Value="public static void Enqueue<T> (ref System.Collections.Immutable.ImmutableQueue<T> location, T value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Enqueue<T>(class System.Collections.Immutable.ImmutableQueue`1<!!T>& location, !!T value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.Enqueue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub Enqueue(Of T) (ByRef location As ImmutableQueue(Of T), value As T)" />
<MemberSignature Language="F#" Value="static member Enqueue : ImmutableQueue * 'T -> unit" Usage="System.Collections.Immutable.ImmutableInterlocked.Enqueue (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static void Enqueue(System::Collections::Immutable::ImmutableQueue<T> ^ % location, T value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableQueue<T>" RefType="ref" />
<Parameter Name="value" Type="T" />
</Parameters>
<Docs>
<typeparam name="T">The type of items contained in the collection.</typeparam>
<param name="location">The variable or field to atomically update.</param>
<param name="value">The value to enqueue.</param>
<summary>Atomically enqueues an element to the end of a queue.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetOrAdd<TKey,TValue>">
<MemberSignature Language="C#" Value="public static TValue GetOrAdd<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, Func<TKey,TValue> valueFactory);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TValue GetOrAdd<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, class System.Func`2<!!TKey, !!TValue> valueFactory) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetOrAdd(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, valueFactory As Func(Of TKey, TValue)) As TValue" />
<MemberSignature Language="F#" Value="static member GetOrAdd : ImmutableDictionary * 'Key * Func<'Key, 'Value> -> 'Value" Usage="System.Collections.Immutable.ImmutableInterlocked.GetOrAdd (location, key, valueFactory)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static TValue GetOrAdd(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, Func<TKey, TValue> ^ valueFactory);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="valueFactory" Type="System.Func<TKey,TValue>" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
<param name="key">The key for the value to retrieve or add.</param>
<param name="valueFactory">The function to execute to obtain the value to insert into the dictionary if the key is not found. This delegate will not be invoked more than once.</param>
<summary>Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.</summary>
<returns>The value at the specified key or <paramref name="valueFactory" /> if the key was not present.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetOrAdd<TKey,TValue>">
<MemberSignature Language="C#" Value="public static TValue GetOrAdd<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TValue GetOrAdd<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, !!TValue value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetOrAdd(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, value As TValue) As TValue" />
<MemberSignature Language="F#" Value="static member GetOrAdd : ImmutableDictionary * 'Key * 'Value -> 'Value" Usage="System.Collections.Immutable.ImmutableInterlocked.GetOrAdd (location, key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static TValue GetOrAdd(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, TValue value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="value" Type="TValue" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<param name="location">The variable or field to atomically update if the specified key is not in the dictionary.</param>
<param name="key">The key for the value to get or add.</param>
<param name="value">The value to add to the dictionary if the key isn't found.</param>
<summary>Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.</summary>
<returns>The value at the specified key, if present.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetOrAdd<TKey,TValue,TArg>">
<MemberSignature Language="C#" Value="public static TValue GetOrAdd<TKey,TValue,TArg> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, Func<TKey,TArg,TValue> valueFactory, TArg factoryArgument);" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;net-7.0;net-8.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-4.6.2-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8.1-pp;netframework-4.8-pp;netstandard-2.0-pp" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TValue GetOrAdd<TKey, TValue, TArg>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, class System.Func`3<!!TKey, !!TArg, !!TValue> valueFactory, !!TArg factoryArgument) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``3(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``2,``1},``2)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetOrAdd(Of TKey, TValue, TArg) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, valueFactory As Func(Of TKey, TArg, TValue), factoryArgument As TArg) As TValue" />
<MemberSignature Language="F#" Value="static member GetOrAdd : ImmutableDictionary * 'Key * Func<'Key, 'Arg, 'Value> * 'Arg -> 'Value" Usage="System.Collections.Immutable.ImmutableInterlocked.GetOrAdd (location, key, valueFactory, factoryArgument)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue, typename TArg>
 static TValue GetOrAdd(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, Func<TKey, TArg, TValue> ^ valueFactory, TArg factoryArgument);" />
<MemberSignature Language="C#" Value="public static TValue GetOrAdd<TKey,TValue,TArg> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, Func<TKey,TArg,TValue> valueFactory, TArg factoryArgument) where TArg : allows ref struct;" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
<TypeParameter Name="TArg">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="valueFactory" Type="System.Func<TKey,TArg,TValue>" />
<Parameter Name="factoryArgument" Type="TArg" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<typeparam name="TArg">The type of the argument supplied to the value factory.</typeparam>
<param name="location">The variable or field to update if the specified is not in the dictionary.</param>
<param name="key">The key for the value to retrieve or add.</param>
<param name="valueFactory">The function to execute to obtain the value to insert into the dictionary if the key is not found.</param>
<param name="factoryArgument">The argument to pass to the value factory.</param>
<summary>Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.</summary>
<returns>The value at the specified key or <paramref name="valueFactory" /> if the key was not present.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="InterlockedCompareExchange<T>">
<MemberSignature Language="C#" Value="public static System.Collections.Immutable.ImmutableArray<T> InterlockedCompareExchange<T> (ref System.Collections.Immutable.ImmutableArray<T> location, System.Collections.Immutable.ImmutableArray<T> value, System.Collections.Immutable.ImmutableArray<T> comparand);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Collections.Immutable.ImmutableArray`1<!!T> InterlockedCompareExchange<T>(valuetype System.Collections.Immutable.ImmutableArray`1<!!T>& location, valuetype System.Collections.Immutable.ImmutableArray`1<!!T> value, valuetype System.Collections.Immutable.ImmutableArray`1<!!T> comparand) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedCompareExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function InterlockedCompareExchange(Of T) (ByRef location As ImmutableArray(Of T), value As ImmutableArray(Of T), comparand As ImmutableArray(Of T)) As ImmutableArray(Of T)" />
<MemberSignature Language="F#" Value="static member InterlockedCompareExchange : ImmutableArray * System.Collections.Immutable.ImmutableArray<'T> * System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>" Usage="System.Collections.Immutable.ImmutableInterlocked.InterlockedCompareExchange (location, value, comparand)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static System::Collections::Immutable::ImmutableArray<T> InterlockedCompareExchange(System::Collections::Immutable::ImmutableArray<T> % location, System::Collections::Immutable::ImmutableArray<T> value, System::Collections::Immutable::ImmutableArray<T> comparand);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Immutable.ImmutableArray<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableArray<T>" RefType="ref">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="value" Type="System.Collections.Immutable.ImmutableArray<T>">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="comparand" Type="System.Collections.Immutable.ImmutableArray<T>">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of element stored by the array.</typeparam>
<param name="location">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
<param name="value">The value that replaces the destination value if the comparison results in equality.</param>
<param name="comparand">The value that is compared to the value at <paramref name="location" />.</param>
<summary>Compares two immutable arrays for equality and, if they are equal, replaces one of the arrays.</summary>
<returns>The original value in <paramref name="location" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="InterlockedExchange<T>">
<MemberSignature Language="C#" Value="public static System.Collections.Immutable.ImmutableArray<T> InterlockedExchange<T> (ref System.Collections.Immutable.ImmutableArray<T> location, System.Collections.Immutable.ImmutableArray<T> value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Collections.Immutable.ImmutableArray`1<!!T> InterlockedExchange<T>(valuetype System.Collections.Immutable.ImmutableArray`1<!!T>& location, valuetype System.Collections.Immutable.ImmutableArray`1<!!T> value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function InterlockedExchange(Of T) (ByRef location As ImmutableArray(Of T), value As ImmutableArray(Of T)) As ImmutableArray(Of T)" />
<MemberSignature Language="F#" Value="static member InterlockedExchange : ImmutableArray * System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>" Usage="System.Collections.Immutable.ImmutableInterlocked.InterlockedExchange (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static System::Collections::Immutable::ImmutableArray<T> InterlockedExchange(System::Collections::Immutable::ImmutableArray<T> % location, System::Collections::Immutable::ImmutableArray<T> value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Immutable.ImmutableArray<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableArray<T>" RefType="ref">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="value" Type="System.Collections.Immutable.ImmutableArray<T>">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of element stored by the array.</typeparam>
<param name="location">The array to set to the specified value.</param>
<param name="value">The value to which the <paramref name="location" /> parameter is set.</param>
<summary>Sets an array to the specified array and returns a reference to the original array, as an atomic operation.</summary>
<returns>The original value of <paramref name="location" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="InterlockedInitialize<T>">
<MemberSignature Language="C#" Value="public static bool InterlockedInitialize<T> (ref System.Collections.Immutable.ImmutableArray<T> location, System.Collections.Immutable.ImmutableArray<T> value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool InterlockedInitialize<T>(valuetype System.Collections.Immutable.ImmutableArray`1<!!T>& location, valuetype System.Collections.Immutable.ImmutableArray`1<!!T> value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedInitialize``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function InterlockedInitialize(Of T) (ByRef location As ImmutableArray(Of T), value As ImmutableArray(Of T)) As Boolean" />
<MemberSignature Language="F#" Value="static member InterlockedInitialize : ImmutableArray * System.Collections.Immutable.ImmutableArray<'T> -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.InterlockedInitialize (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static bool InterlockedInitialize(System::Collections::Immutable::ImmutableArray<T> % location, System::Collections::Immutable::ImmutableArray<T> value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableArray<T>" RefType="ref">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="value" Type="System.Collections.Immutable.ImmutableArray<T>">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of element stored by the array.</typeparam>
<param name="location">The array to set to the specified value.</param>
<param name="value">The value to which the <paramref name="location" /> parameter is set, if it's not initialized.</param>
<summary>Sets an array to the specified array if the array has not been initialized.</summary>
<returns>
<see langword="true" /> if the array was assigned the specified value; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Push<T>">
<MemberSignature Language="C#" Value="public static void Push<T> (ref System.Collections.Immutable.ImmutableStack<T> location, T value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Push<T>(class System.Collections.Immutable.ImmutableStack`1<!!T>& location, !!T value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.Push``1(System.Collections.Immutable.ImmutableStack{``0}@,``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub Push(Of T) (ByRef location As ImmutableStack(Of T), value As T)" />
<MemberSignature Language="F#" Value="static member Push : ImmutableStack * 'T -> unit" Usage="System.Collections.Immutable.ImmutableInterlocked.Push (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static void Push(System::Collections::Immutable::ImmutableStack<T> ^ % location, T value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableStack<T>" RefType="ref" />
<Parameter Name="value" Type="T" />
</Parameters>
<Docs>
<typeparam name="T">The type of items in the stack.</typeparam>
<param name="location">The stack to update.</param>
<param name="value">The value to push on the stack.</param>
<summary>Pushes a new element onto the stack.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryAdd<TKey,TValue>">
<MemberSignature Language="C#" Value="public static bool TryAdd<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryAdd<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, !!TValue value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.TryAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryAdd(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="static member TryAdd : ImmutableDictionary * 'Key * 'Value -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.TryAdd (location, key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static bool TryAdd(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, TValue value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="value" Type="TValue" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<param name="location">The dictionary to update with the specified key and value.</param>
<param name="key">The key to add, if is not already defined in the dictionary.</param>
<param name="value">The value to add.</param>
<summary>Adds the specified key and value to the dictionary if the key is not in the dictionary.</summary>
<returns>
<see langword="true" /> if the key is not in the dictionary; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryDequeue<T>">
<MemberSignature Language="C#" Value="public static bool TryDequeue<T> (ref System.Collections.Immutable.ImmutableQueue<T> location, out T value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryDequeue<T>(class System.Collections.Immutable.ImmutableQueue`1<!!T>& location, [out] !!T& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.TryDequeue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryDequeue(Of T) (ByRef location As ImmutableQueue(Of T), ByRef value As T) As Boolean" />
<MemberSignature Language="F#" Value="static member TryDequeue : ImmutableQueue * 'T -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.TryDequeue (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static bool TryDequeue(System::Collections::Immutable::ImmutableQueue<T> ^ % location, [Runtime::InteropServices::Out] T % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableQueue<T>" RefType="ref" />
<Parameter Name="value" Type="T" RefType="out">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of items in the queue.</typeparam>
<param name="location">The variable or field to atomically update.</param>
<param name="value">Set to the value from the head of the queue, if the queue not empty.</param>
<summary>Atomically removes and returns the specified element at the head of the queue, if the queue is not empty.</summary>
<returns>
<see langword="true" /> if the queue is not empty and the head element is removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryPop<T>">
<MemberSignature Language="C#" Value="public static bool TryPop<T> (ref System.Collections.Immutable.ImmutableStack<T> location, out T value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryPop<T>(class System.Collections.Immutable.ImmutableStack`1<!!T>& location, [out] !!T& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.TryPop``1(System.Collections.Immutable.ImmutableStack{``0}@,``0@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryPop(Of T) (ByRef location As ImmutableStack(Of T), ByRef value As T) As Boolean" />
<MemberSignature Language="F#" Value="static member TryPop : ImmutableStack * 'T -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.TryPop (location, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static bool TryPop(System::Collections::Immutable::ImmutableStack<T> ^ % location, [Runtime::InteropServices::Out] T % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableStack<T>" RefType="ref" />
<Parameter Name="value" Type="T" RefType="out">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of items in the stack.</typeparam>
<param name="location">The stack to update.</param>
<param name="value">Receives the value removed from the stack, if the stack is not empty.</param>
<summary>Removes an element from the top of the stack, if there is an element to remove.</summary>
<returns>
<see langword="true" /> if an element is removed from the stack; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryRemove<TKey,TValue>">
<MemberSignature Language="C#" Value="public static bool TryRemove<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, out TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryRemove<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, [out] !!TValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.TryRemove``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryRemove(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, ByRef value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="static member TryRemove : ImmutableDictionary * 'Key * 'Value -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.TryRemove (location, key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static bool TryRemove(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, [Runtime::InteropServices::Out] TValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="value" Type="TValue" RefType="out">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<param name="location">The dictionary to update.</param>
<param name="key">The key to remove.</param>
<param name="value">Receives the value of the removed item, if the dictionary is not empty.</param>
<summary>Removes the element with the specified key, if the key exists.</summary>
<returns>
<see langword="true" /> if the key was found and removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryUpdate<TKey,TValue>">
<MemberSignature Language="C#" Value="public static bool TryUpdate<TKey,TValue> (ref System.Collections.Immutable.ImmutableDictionary<TKey,TValue> location, TKey key, TValue newValue, TValue comparisonValue);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryUpdate<TKey, TValue>(class System.Collections.Immutable.ImmutableDictionary`2<!!TKey, !!TValue>& location, !!TKey key, !!TValue newValue, !!TValue comparisonValue) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.TryUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,``1)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryUpdate(Of TKey, TValue) (ByRef location As ImmutableDictionary(Of TKey, TValue), key As TKey, newValue As TValue, comparisonValue As TValue) As Boolean" />
<MemberSignature Language="F#" Value="static member TryUpdate : ImmutableDictionary * 'Key * 'Value * 'Value -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.TryUpdate (location, key, newValue, comparisonValue)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TKey, typename TValue>
 static bool TryUpdate(System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ % location, TKey key, TValue newValue, TValue comparisonValue);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TKey" />
<TypeParameter Name="TValue">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableDictionary<TKey,TValue>" RefType="ref" />
<Parameter Name="key" Type="TKey" />
<Parameter Name="newValue" Type="TValue" />
<Parameter Name="comparisonValue" Type="TValue" />
</Parameters>
<Docs>
<typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
<typeparam name="TValue">The type of the values contained in the collection.</typeparam>
<param name="location">The dictionary to update.</param>
<param name="key">The key to update.</param>
<param name="newValue">The new value to set.</param>
<param name="comparisonValue">The current value for <paramref name="key" /> in order for the update to succeed.</param>
<summary>Sets the specified key to the specified value if the specified key already is set to a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="key" /> and <paramref name="comparisonValue" /> are present in the dictionary and comparison was updated to <paramref name="newValue" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Update<T>">
<MemberSignature Language="C#" Value="public static bool Update<T> (ref System.Collections.Immutable.ImmutableArray<T> location, Func<System.Collections.Immutable.ImmutableArray<T>,System.Collections.Immutable.ImmutableArray<T>> transformer);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Update<T>(valuetype System.Collections.Immutable.ImmutableArray`1<!!T>& location, class System.Func`2<valuetype System.Collections.Immutable.ImmutableArray`1<!!T>, valuetype System.Collections.Immutable.ImmutableArray`1<!!T>> transformer) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.Update``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Func{System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0}})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Update(Of T) (ByRef location As ImmutableArray(Of T), transformer As Func(Of ImmutableArray(Of T), ImmutableArray(Of T))) As Boolean" />
<MemberSignature Language="F#" Value="static member Update : ImmutableArray * Func<System.Collections.Immutable.ImmutableArray<'T>, System.Collections.Immutable.ImmutableArray<'T>> -> bool" Usage="System.Collections.Immutable.ImmutableInterlocked.Update (location, transformer)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static bool Update(System::Collections::Immutable::ImmutableArray<T> % location, Func<System::Collections::Immutable::ImmutableArray<T>, System::Collections::Immutable::ImmutableArray<T>> ^ transformer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="location" Type="System.Collections.Immutable.ImmutableArray<T>" RefType="ref" Index="0" FrameworkAlternate="net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-2.0;net-6.0-pp;net-7.0-pp;net-8.0-pp;net-9.0-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8-pp;netstandard-2.0-pp;netframework-4.8.1-pp;net-10.0;net-10.0-pp;netframework-4.6.2-pp;net-11.0;net-11.0-pp">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="transformer" Type="System.Func<System.Collections.Immutable.ImmutableArray<T>,System.Collections.Immutable.ImmutableArray<T>>" Index="1" FrameworkAlternate="net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-2.0;net-6.0-pp;net-7.0-pp;net-8.0-pp;net-9.0-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8-pp;netstandard-2.0-pp;netframework-4.8.1-pp;net-10.0;net-10.0-pp;netframework-4.6.2-pp;net-11.0;net-11.0-pp">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0, 1, 0, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0, 1, 0, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<typeparam name="T">The type of data in the immutable array.</typeparam>
<param name="location">The immutable array to be changed.</param>
<param name="transformer">A function that produces the new array from the old. This function should be side-effect free, as it may run multiple times when races occur with other threads.</param>
<summary>Mutates an immutable array in-place with optimistic locking transaction semantics via a specified transformation function.
The transformation is retried as many times as necessary to win the optimistic locking race.</summary>
<returns>
<see langword="true" /> if the location's value is changed by applying the result of the <paramref name="transformer" /> function; <see langword="false" /> if the location's value remained the same because the last invocation of <paramref name="transformer" /> returned the existing value.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Update<T>">
<MemberSignature Language="C#" Value="public static bool Update<T> (ref T location, Func<T,T> transformer) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool Update<class T>(!!T& location, class System.Func`2<!!T, !!T> transformer) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Immutable.ImmutableInterlocked.Update``1(``0@,System.Func{``0,``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Update(Of T As Class) (ByRef location As T, transformer As Func(Of T, T)) As Boolean" />
<MemberSignature Language="F#" Value="static member Update : 'T * Func<'T, 'T (requires 'T : null and 'T : null)> -> bool (requires 'T : null)" Usage="System.Collections.Immutable.ImmutableInterlocked.Update (location, transformer)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static bool Update(T % location, Func<T, T> ^ transformer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Immutable</AssemblyName>
<AssemblyVersion>1.1.37.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">