System.Collections.Immutable.xml 412 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908
  1. <?xml version="1.0" encoding="utf-8"?><doc>
  2. <assembly>
  3. <name>System.Collections.Immutable</name>
  4. </assembly>
  5. <members>
  6. <member name="T:System.Collections.Immutable.IImmutableDictionary`2">
  7. <summary>Represents an immutable collection of key/value pairs.
  8. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  9. <typeparam name="TKey">The type of keys in the dictionary.</typeparam>
  10. <typeparam name="TValue">The type of values in the dictionary.</typeparam>
  11. </member>
  12. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.Add(`0,`1)">
  13. <summary>Adds an element with the specified key and value to the dictionary.</summary>
  14. <param name="key">The key of the element to add.</param>
  15. <param name="value">The value of the element to add.</param>
  16. <returns>A new immutable dictionary that contains the additional key/value pair.</returns>
  17. <exception cref="T:System.ArgumentException">The given key already exists in the dictionary but has a different value.</exception>
  18. </member>
  19. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  20. <summary>Adds the specified key/value pairs to the dictionary.</summary>
  21. <param name="pairs">The key/value pairs to add.</param>
  22. <returns>A new immutable dictionary that contains the additional key/value pairs.</returns>
  23. <exception cref="T:System.ArgumentException">One of the given keys already exists in the dictionary but has a different value.</exception>
  24. </member>
  25. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.Clear">
  26. <summary>Retrieves an empty dictionary that has the same ordering and key/value comparison rules as this dictionary instance.</summary>
  27. <returns>An empty dictionary with equivalent ordering and key/value comparison rules.</returns>
  28. </member>
  29. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  30. <summary>Determines whether the immutable dictionary contains the specified key/value pair.</summary>
  31. <param name="pair">The key/value pair to locate.</param>
  32. <returns>true if the specified key/value pair is found in the dictionary; otherwise, false.</returns>
  33. </member>
  34. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.Remove(`0)">
  35. <summary>Removes the element with the specified key from the immutable dictionary.</summary>
  36. <param name="key">The key of the element to remove.</param>
  37. <returns>A new immutable dictionary with the specified element removed; or this instance if the specified key cannot be found in the dictionary.</returns>
  38. </member>
  39. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  40. <summary>Removes the elements with the specified keys from the immutable dictionary.</summary>
  41. <param name="keys">The keys of the elements to remove.</param>
  42. <returns>A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.</returns>
  43. </member>
  44. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.SetItem(`0,`1)">
  45. <summary>Sets the specified key and value in the immutable dictionary, possibly overwriting an existing value for the key.</summary>
  46. <param name="key">The key of the entry to add.</param>
  47. <param name="value">The key value to set.</param>
  48. <returns>A new immutable dictionary that contains the specified key/value pair.</returns>
  49. </member>
  50. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  51. <summary>Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.</summary>
  52. <param name="items">The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.</param>
  53. <returns>A new immutable dictionary that contains the specified key/value pairs.</returns>
  54. </member>
  55. <member name="M:System.Collections.Immutable.IImmutableDictionary`2.TryGetKey(`0,`0@)">
  56. <summary>Determines whether this dictionary contains a specified key.</summary>
  57. <param name="equalKey">The key to search for.</param>
  58. <param name="actualKey">The matching key located in the dictionary if found, or equalkey if no match is found.</param>
  59. <returns>true if a match for <paramref name="equalKey">equalKey</paramref> is found; otherwise, false.</returns>
  60. </member>
  61. <member name="T:System.Collections.Immutable.IImmutableList`1">
  62. <summary>Represents a list of elements that cannot be modified.
  63. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  64. <typeparam name="T">The type of elements in the list.</typeparam>
  65. </member>
  66. <member name="M:System.Collections.Immutable.IImmutableList`1.Add(`0)">
  67. <summary>Makes a copy of the list, and adds the specified object to the end of the copied list.</summary>
  68. <param name="value">The object to add to the list.</param>
  69. <returns>A new list with the object added, or this list if the object is already in the list.</returns>
  70. </member>
  71. <member name="M:System.Collections.Immutable.IImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  72. <summary>Makes a copy of the list and adds the specified objects to the end of the copied list.</summary>
  73. <param name="items">The objects to add to the list.</param>
  74. <returns>A new list with the elements added, or this list if the elements already exist in the list.</returns>
  75. </member>
  76. <member name="M:System.Collections.Immutable.IImmutableList`1.Clear">
  77. <summary>Creates a list with all the items removed, but with the same sorting and ordering semantics as this list.</summary>
  78. <returns>An empty list that has the same sorting and ordering semantics as this instance.</returns>
  79. </member>
  80. <member name="M:System.Collections.Immutable.IImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  81. <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.IImmutableList`1"></see> that starts at the specified index and contains the specified number of elements.</summary>
  82. <param name="item">The object to locate in the <see cref="T:System.Collections.Immutable.IImmutableList`1"></see>. This value can be null for reference types.</param>
  83. <param name="index">The zero-based starting indes of the search. 0 (zero) is valid in an empty list.</param>
  84. <param name="count">The number of elements in the section to search.</param>
  85. <param name="equalityComparer">The equality comparer to use to locate item.</param>
  86. <returns>The zero-based index of the first occurrence of <paramref name="item">item</paramref> within the range of elements in the <see cref="System.Collections.Immutable.IImmutableList`1"></see> that starts at <paramref name="index">index</paramref> and contains <paramref name="count">count</paramref> number of elements if found; otherwise -1.</returns>
  87. </member>
  88. <member name="M:System.Collections.Immutable.IImmutableList`1.Insert(System.Int32,`0)">
  89. <summary>Inserts the specified element at the specified index in the immutable list.</summary>
  90. <param name="index">The zero-based index at which to insert the value.</param>
  91. <param name="element">The object to insert.</param>
  92. <returns>A new immutable list that includes the specified element.</returns>
  93. </member>
  94. <member name="M:System.Collections.Immutable.IImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  95. <summary>Inserts the specified elements at the specified index in the immutable list.</summary>
  96. <param name="index">The zero-based index at which the new elements should be inserted.</param>
  97. <param name="items">The elements to insert.</param>
  98. <returns>A new immutable list that includes the specified elements.</returns>
  99. </member>
  100. <member name="M:System.Collections.Immutable.IImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  101. <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.IImmutableList`1"></see> that contains the specified number of elements and ends at the specified index.</summary>
  102. <param name="item">The object to locate in the list. The value can be null for reference types.</param>
  103. <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  104. <param name="count">The number of elements in the section to search.</param>
  105. <param name="equalityComparer">The equality comparer to match item.</param>
  106. <returns>Returns <see cref="System.Int32"></see>.</returns>
  107. </member>
  108. <member name="M:System.Collections.Immutable.IImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
  109. <summary>Removes the first occurrence of a specified object from this immutable list.</summary>
  110. <param name="value">The object to remove from the list.</param>
  111. <param name="equalityComparer">The equality comparer to use to locate value.</param>
  112. <returns>Returns a new list with the specified object removed.</returns>
  113. </member>
  114. <member name="M:System.Collections.Immutable.IImmutableList`1.RemoveAll(System.Predicate{`0})">
  115. <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
  116. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  117. <returns>A new immutable list with the elements removed.</returns>
  118. </member>
  119. <member name="M:System.Collections.Immutable.IImmutableList`1.RemoveAt(System.Int32)">
  120. <summary>Removes the element at the specified index of the immutable list.</summary>
  121. <param name="index">The index of the element to remove.</param>
  122. <returns>A new list with the element removed.</returns>
  123. </member>
  124. <member name="M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  125. <summary>Removes the specified object from the list.</summary>
  126. <param name="items">The objects to remove from the list.</param>
  127. <param name="equalityComparer">The equality comparer to use to determine if items match any objects in the list.</param>
  128. <returns>A new immutable list with the specified objects removed, if <paramref name="items">items</paramref> matched objects in the list.</returns>
  129. </member>
  130. <member name="M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Int32,System.Int32)">
  131. <summary>Removes a range of elements from the <see cref="T:System.Collections.Immutable.IImmutableList`1"></see>.</summary>
  132. <param name="index">The zero-based starting index of the range of elements to remove.</param>
  133. <param name="count">The number of elements to remove.</param>
  134. <returns>A new immutable list with the elements removed.</returns>
  135. </member>
  136. <member name="M:System.Collections.Immutable.IImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
  137. <summary>Returns a new list with the first matching element in the list replaced with the specified element.</summary>
  138. <param name="oldValue">The element to be replaced.</param>
  139. <param name="newValue">The element to replace the the first occurrence of oldValue with</param>
  140. <param name="equalityComparer">The equality comparer to use for matching oldValue.</param>
  141. <returns>A new list that contains <paramref name="newValue">newValue</paramref>, even if <paramref name="oldvalue">oldvalue</paramref> is the same as <paramref name="newValue">newValue</paramref>.</returns>
  142. <exception cref="T:System.ArgumentException"><paramref name="oldValue">oldValue</paramref> does not exist in the list.</exception>
  143. </member>
  144. <member name="M:System.Collections.Immutable.IImmutableList`1.SetItem(System.Int32,`0)">
  145. <summary>Replaces an element in the list at a given position with the specified element.</summary>
  146. <param name="index">The position in the list of the element to replace.</param>
  147. <param name="value">The element to replace the old element with.</param>
  148. <returns>A new list that contains the new element, even if the element at the specified location is the same as the new element.</returns>
  149. </member>
  150. <member name="T:System.Collections.Immutable.IImmutableQueue`1">
  151. <summary>Represents an immutable first-in, first-out collection of objects.
  152. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  153. <typeparam name="T">The type of elements in the queue.</typeparam>
  154. </member>
  155. <member name="M:System.Collections.Immutable.IImmutableQueue`1.Clear">
  156. <summary>Returns a new queue with all the elements removed.</summary>
  157. <returns>An empty immutable queue.</returns>
  158. </member>
  159. <member name="M:System.Collections.Immutable.IImmutableQueue`1.Dequeue">
  160. <summary>Removes the first element in the immutable queue, and returns the new queue.</summary>
  161. <returns>The new immutable queue with the first element removed. This value is never null.</returns>
  162. </member>
  163. <member name="M:System.Collections.Immutable.IImmutableQueue`1.Enqueue(`0)">
  164. <summary>Adds an element to the end of the immutable queue, and returns the new queue.</summary>
  165. <param name="value">The element to add.</param>
  166. <returns>The new immutable queue with the specified element added.</returns>
  167. </member>
  168. <member name="P:System.Collections.Immutable.IImmutableQueue`1.IsEmpty">
  169. <summary>Gets a value that indicates whether this immutable queue is empty.</summary>
  170. <returns>true if this queue is empty; otherwise, false.</returns>
  171. </member>
  172. <member name="M:System.Collections.Immutable.IImmutableQueue`1.Peek">
  173. <summary>Returns the element at the beginning of the immutable queue without removing it.</summary>
  174. <returns>The element at the beginning of the queue.</returns>
  175. </member>
  176. <member name="T:System.Collections.Immutable.IImmutableSet`1">
  177. <summary>Represents a set of elements that can only be modified by creating a new instance of the set.
  178. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  179. <typeparam name="T">The type of element stored in the set.</typeparam>
  180. </member>
  181. <member name="M:System.Collections.Immutable.IImmutableSet`1.Add(`0)">
  182. <summary>Adds the specified element to this immutable set.</summary>
  183. <param name="value">The element to add.</param>
  184. <returns>A new set with the element added, or this set if the element is already in the set.</returns>
  185. </member>
  186. <member name="M:System.Collections.Immutable.IImmutableSet`1.Clear">
  187. <summary>Retrieves an empty immutable set that has the same sorting and ordering semantics as this instance.</summary>
  188. <returns>An empty set that has the same sorting and ordering semantics as this instance.</returns>
  189. </member>
  190. <member name="M:System.Collections.Immutable.IImmutableSet`1.Contains(`0)">
  191. <summary>Determines whether this immutable set contains a specified element.</summary>
  192. <param name="value">The element to locate in the set.</param>
  193. <returns>true if the set contains the specified value; otherwise, false.</returns>
  194. </member>
  195. <member name="M:System.Collections.Immutable.IImmutableSet`1.Except(System.Collections.Generic.IEnumerable{`0})">
  196. <summary>Removes the elements in the specified collection from the current immutable set.</summary>
  197. <param name="other">The collection of items to remove from this set.</param>
  198. <returns>A new set with the items removed; or the original set if none of the items were in the set.</returns>
  199. </member>
  200. <member name="M:System.Collections.Immutable.IImmutableSet`1.Intersect(System.Collections.Generic.IEnumerable{`0})">
  201. <summary>Creates an immutable set that contains only elements that exist in this set and the specified set.</summary>
  202. <param name="other">The collection to compare to the current <see cref="T:System.Collections.Immutable.IImmutableSet`1"></see>.</param>
  203. <returns>A new immutable set that contains elements that exist in both sets.</returns>
  204. </member>
  205. <member name="M:System.Collections.Immutable.IImmutableSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  206. <summary>Determines whether the current immutable set is a proper (strict) subset of the specified collection.</summary>
  207. <param name="other">The collection to compare to the current set.</param>
  208. <returns>true if the current set is a proper subset of the specified collection; otherwise, false.</returns>
  209. </member>
  210. <member name="M:System.Collections.Immutable.IImmutableSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  211. <summary>Determines whether the current immutable set is a proper (strict) superset of the specified collection.</summary>
  212. <param name="other">The collection to compare to the current set.</param>
  213. <returns>true if the current set is a proper superset of the specified collection; otherwise, false.</returns>
  214. </member>
  215. <member name="M:System.Collections.Immutable.IImmutableSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  216. <summary>Determines whether the current immutable set is a subset of a specified collection.</summary>
  217. <param name="other">The collection to compare to the current set.</param>
  218. <returns>true if the current set is a subset of the specified collection; otherwise, false.</returns>
  219. </member>
  220. <member name="M:System.Collections.Immutable.IImmutableSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  221. <summary>Determines whether the current immutable set is a superset of a specified collection.</summary>
  222. <param name="other">The collection to compare to the current set.</param>
  223. <returns>true if the current set is a superset of the specified collection; otherwise, false.</returns>
  224. </member>
  225. <member name="M:System.Collections.Immutable.IImmutableSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  226. <summary>Determines whether the current immutable set overlaps with the specified collection.</summary>
  227. <param name="other">The collection to compare to the current set.</param>
  228. <returns>true if the current set and the specified collection share at least one common element; otherwise, false.</returns>
  229. </member>
  230. <member name="M:System.Collections.Immutable.IImmutableSet`1.Remove(`0)">
  231. <summary>Removes the specified element from this immutable set.</summary>
  232. <param name="value">The element to remove.</param>
  233. <returns>A new set with the specified element removed, or the current set if the element cannot be found in the set.</returns>
  234. </member>
  235. <member name="M:System.Collections.Immutable.IImmutableSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  236. <summary>Determines whether the current immutable set and the specified collection contain the same elements.</summary>
  237. <param name="other">The collection to compare to the current set.</param>
  238. <returns>true if the sets are equal; otherwise, false.</returns>
  239. </member>
  240. <member name="M:System.Collections.Immutable.IImmutableSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
  241. <summary>Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  242. <param name="other">The collection to compare to the current set.</param>
  243. <returns>A new set that contains the elements that are present only in the current set or in the specified collection, but not both.</returns>
  244. </member>
  245. <member name="M:System.Collections.Immutable.IImmutableSet`1.TryGetValue(`0,`0@)">
  246. <summary>Determines whether the set contains a specified value.</summary>
  247. <param name="equalValue">The value to search for.</param>
  248. <param name="actualValue">The matching value from the set, if found, or equalvalue if there are no matches.</param>
  249. <returns>true if a matching value was found; otherwise, false.</returns>
  250. </member>
  251. <member name="M:System.Collections.Immutable.IImmutableSet`1.Union(System.Collections.Generic.IEnumerable{`0})">
  252. <summary>Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.</summary>
  253. <param name="other">The collection to add elements from.</param>
  254. <returns>A new immutable set with the items added; or the original set if all the items were already in the set.</returns>
  255. </member>
  256. <member name="T:System.Collections.Immutable.IImmutableStack`1">
  257. <summary>Represents an immutable last-in-first-out (LIFO) collection.
  258. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  259. <typeparam name="T">The type of elements in the stack.</typeparam>
  260. </member>
  261. <member name="M:System.Collections.Immutable.IImmutableStack`1.Clear">
  262. <summary>Removes all objects from the immutable stack.</summary>
  263. <returns>An empty immutable stack.</returns>
  264. </member>
  265. <member name="P:System.Collections.Immutable.IImmutableStack`1.IsEmpty">
  266. <summary>Gets a value that indicates whether this immutable stack is empty.</summary>
  267. <returns>true if this stack is empty; otherwise,false.</returns>
  268. </member>
  269. <member name="M:System.Collections.Immutable.IImmutableStack`1.Peek">
  270. <summary>Returns the element at the top of the immutable stack without removing it.</summary>
  271. <returns>The element at the top of the stack.</returns>
  272. </member>
  273. <member name="M:System.Collections.Immutable.IImmutableStack`1.Pop">
  274. <summary>Removes the element at the top of the immutable stack and returns the new stack.</summary>
  275. <returns>The new stack; never null</returns>
  276. </member>
  277. <member name="M:System.Collections.Immutable.IImmutableStack`1.Push(`0)">
  278. <summary>Inserts an element at the top of the immutable stack and returns the new stack.</summary>
  279. <param name="value">The element to push onto the stack.</param>
  280. <returns>The new stack.</returns>
  281. </member>
  282. <member name="T:System.Collections.Immutable.ImmutableArray`1.Builder">
  283. <summary>A writable array accessor that can be converted into an <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> instance without allocating extra memory.
  284. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  285. <typeparam name="T"></typeparam>
  286. </member>
  287. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Add(`0)">
  288. <summary>Adds the specified item to the array.</summary>
  289. <param name="item">The object to add to the array.</param>
  290. </member>
  291. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0})">
  292. <summary>Adds the specified items to the end of the array.</summary>
  293. <param name="items">The items to add to the array.</param>
  294. </member>
  295. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0})">
  296. <summary>Adds the specified items to the end of the array.</summary>
  297. <param name="items">The items to add to the array.</param>
  298. </member>
  299. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0}.Builder)">
  300. <summary>Adds the specified items to the end of the array.</summary>
  301. <param name="items">The items to add to the array.</param>
  302. </member>
  303. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[])">
  304. <summary>Adds the specified items to the end of the array.</summary>
  305. <param name="items">The items to add to the array.</param>
  306. </member>
  307. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0},System.Int32)">
  308. <summary>Adds the specified items to the end of the array.</summary>
  309. <param name="items">The items to add to the array.</param>
  310. <param name="length">The number of elements from the source array to add.</param>
  311. </member>
  312. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[],System.Int32)">
  313. <summary>Adds the specified items to the end of the array.</summary>
  314. <param name="items">The items to add to the array.</param>
  315. <param name="length">The number of elements from the source array to add.</param>
  316. </member>
  317. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(``0[])">
  318. <summary>Adds the specified items that derive from the type currently in the array, to the end of the array.</summary>
  319. <param name="items">The items to add to end of the array.</param>
  320. <typeparam name="TDerived">The type that derives from the type of item already in the array.</typeparam>
  321. </member>
  322. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  323. <summary>Adds the specified items that derive from the type currently in the array, to the end of the array.</summary>
  324. <param name="items">The items to add to the end of the array.</param>
  325. <typeparam name="TDerived">The type that derives from the type of item already in the array.</typeparam>
  326. </member>
  327. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0})">
  328. <summary>Adds the specified items that derive from the type currently in the array, to the end of the array</summary>
  329. <param name="items">The items to add to the end of the array.</param>
  330. <typeparam name="TDerived">The type that derives from the type of item already in the array.</typeparam>
  331. </member>
  332. <member name="P:System.Collections.Immutable.ImmutableArray`1.Builder.Capacity">
  333. <summary>Get and sets the length of the internal array. When set the internal array is reallocated to the given capacity if it is not already the specified length.</summary>
  334. <returns></returns>
  335. </member>
  336. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Clear">
  337. <summary>Removes all items from the array.</summary>
  338. </member>
  339. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Contains(`0)">
  340. <summary>Determines whether the array contains a specific value.</summary>
  341. <param name="item">The object to locate in the array.</param>
  342. <returns>true if the object is found; otherwise, false.</returns>
  343. </member>
  344. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(`0[],System.Int32)">
  345. <summary>Copies the current contents to the specified array.</summary>
  346. <param name="array">The array to copy to.</param>
  347. <param name="index">The index to start the copy operation.</param>
  348. </member>
  349. <member name="P:System.Collections.Immutable.ImmutableArray`1.Builder.Count">
  350. <summary>Gets or sets the number of items in the array.</summary>
  351. <returns>The number of items in the array.</returns>
  352. </member>
  353. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.GetEnumerator">
  354. <summary>Gets an object that can be used to iterate through the collection.</summary>
  355. <returns>An object that can be used to iterate through the collection.</returns>
  356. </member>
  357. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32)">
  358. <summary>Determines the index of the specified item.</summary>
  359. <param name="item">The item to locate in the array.</param>
  360. <param name="startIndex">The starting position of the search.</param>
  361. <param name="count">The number of elements to search.</param>
  362. <returns>The index of <paramref name="item">item</paramref> if it’s found in the list; otherwise, -1.</returns>
  363. </member>
  364. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  365. <summary>Determines the index for the specified item.</summary>
  366. <param name="item">The item to locate in the array.</param>
  367. <param name="startIndex">The index at which to begin the search.</param>
  368. <param name="count">The starting position of the search.</param>
  369. <param name="equalityComparer">The equality comparer to use in the search</param>
  370. <returns>The index of <paramref name="item">item</paramref> if it’s found in the list; otherwise, -1.</returns>
  371. </member>
  372. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0)">
  373. <summary>Determines the index of a specific item in the array.</summary>
  374. <param name="item">The item to locate in the array.</param>
  375. <returns>The index of <paramref name="item">item</paramref> if it’s found in the list; otherwise, -1.</returns>
  376. </member>
  377. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32)">
  378. <summary>Determines the index of the specified item.</summary>
  379. <param name="item">The item to locate in the array.</param>
  380. <param name="startIndex">The starting position of the search.</param>
  381. <returns>The index of <paramref name="item">item</paramref> if it’s found in the list; otherwise, -1.</returns>
  382. </member>
  383. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Insert(System.Int32,`0)">
  384. <summary>Inserts an item in the array at the specified index.</summary>
  385. <param name="index">The zero-based index at which to insert the item.</param>
  386. <param name="item">The object to insert into the array.</param>
  387. </member>
  388. <member name="P:System.Collections.Immutable.ImmutableArray`1.Builder.Item(System.Int32)">
  389. <summary>Gets or sets the item at the specified index.</summary>
  390. <param name="index">The index of the item to get or set.</param>
  391. <returns>The item at the specified index.</returns>
  392. <exception cref="T:System.IndexOutOfRangeException">The specified index is not in the array.</exception>
  393. </member>
  394. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0)">
  395. <summary>Determines the 0-based index of the last occurrence of the specified item in this array.</summary>
  396. <param name="item">The item to search for.</param>
  397. <returns>The 0-based index where the item was found; or -1 if it could not be found.</returns>
  398. </member>
  399. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32)">
  400. <summary>Determines the 0-based index of the last occurrence of the specified item in this array.</summary>
  401. <param name="item">The item to search for.</param>
  402. <param name="startIndex">The starting position of the search.</param>
  403. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  404. </member>
  405. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32)">
  406. <summary>Determines the 0-based index of the last occurrence of the specified item in this array.</summary>
  407. <param name="item">The item to search for.</param>
  408. <param name="startIndex">The starting position of the search.</param>
  409. <param name="count">The number of elements to search.</param>
  410. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  411. </member>
  412. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  413. <summary>Determines the 0-based index of the last occurrence of the specified item in this array.</summary>
  414. <param name="item">The item to search for.</param>
  415. <param name="startIndex">The starting position of the search.</param>
  416. <param name="count">The number of elements to search.</param>
  417. <param name="equalityComparer">The equality comparer to use in the search.</param>
  418. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  419. </member>
  420. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.MoveToImmutable">
  421. <summary>Extracts the internal array as an <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> and replaces it with a zero length array.</summary>
  422. <returns></returns>
  423. <exception cref="T:System.InvalidOperationException">When <see cref="System.Collections.Immutable.ImmutableArray`1.Builder.Count"></see> doesn&amp;#39;t equal <see cref="System.Collections.Immutable.ImmutableArray`1.Builder.Capacity"></see>.</exception>
  424. </member>
  425. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Remove(`0)">
  426. <summary>Removes the specified element.</summary>
  427. <param name="element">The item to remove.</param>
  428. <returns>true if <paramref name="element">element</paramref> was found and removed; otherwise, false.</returns>
  429. </member>
  430. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveAt(System.Int32)">
  431. <summary>Removes the item at the specified index from the array.</summary>
  432. <param name="index">The zero-based index of the item to remove.</param>
  433. </member>
  434. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Reverse">
  435. <summary>Reverses the order of elements in the collection.</summary>
  436. </member>
  437. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort">
  438. <summary>Sorts the contents of the array.</summary>
  439. </member>
  440. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Collections.Generic.IComparer{`0})">
  441. <summary>Sorts the contents of the array.</summary>
  442. <param name="comparer">The comparer to use for sorting. If comparer is null, the default comparer for the elements type in the array is used.</param>
  443. </member>
  444. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Comparison{`0})">
  445. <summary>Sorts the elements in the entire array using the specified <see cref="T:System.Comparison`1"></see>.</summary>
  446. <param name="comparison">The <see cref="T:System.Comparison`1"></see> to use when comparing elements.</param>
  447. <exception cref="T:System.ArgumentNullException"><paramref name="comparison">comparison</paramref> is null.</exception>
  448. </member>
  449. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
  450. <summary>Sorts the contents of the array.</summary>
  451. <param name="index">The starting index for the sort.</param>
  452. <param name="count">The number of elements to include in the sort.</param>
  453. <param name="comparer">The comparer to use for sorting. If comparer is null, the default comparer for the elements type in the array is used.</param>
  454. </member>
  455. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.ToArray">
  456. <summary>Creates a new array with the current contents of this <see cref="T:System.Collections.Immutable.ImmutableArray`1.Builder"></see>.</summary>
  457. <returns>A new array with the contents of this <see cref="System.Collections.Immutable.ImmutableArray`1.Builder"></see>.</returns>
  458. </member>
  459. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.ToImmutable">
  460. <summary>Returns an immutable array that contains the current contents of this <see cref="T:System.Collections.Immutable.ImmutableArray`1.Builder"></see>.</summary>
  461. <returns>An immutable array that contains the current contents of this <see cref="System.Collections.Immutable.ImmutableArray`1.Builder"></see>.</returns>
  462. </member>
  463. <member name="P:System.Collections.Immutable.ImmutableArray`1.Builder.System#Collections#Generic#ICollection{T}#IsReadOnly">
  464. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  465. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  466. </member>
  467. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  468. <summary>Returns an enumerator that iterates through the array.</summary>
  469. <returns>An enumerator that iterates through the array.</returns>
  470. </member>
  471. <member name="M:System.Collections.Immutable.ImmutableArray`1.Builder.System#Collections#IEnumerable#GetEnumerator">
  472. <summary>Returns an enumerator that iterates through the array.</summary>
  473. <returns>An enumerator that iterates through the array.</returns>
  474. </member>
  475. <member name="T:System.Collections.Immutable.ImmutableArray`1.Enumerator">
  476. <summary>An array enumerator.
  477. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  478. <typeparam name="T"></typeparam>
  479. </member>
  480. <member name="P:System.Collections.Immutable.ImmutableArray`1.Enumerator.Current">
  481. <summary>Gets the currently item.</summary>
  482. <returns>The current item.</returns>
  483. </member>
  484. <member name="M:System.Collections.Immutable.ImmutableArray`1.Enumerator.MoveNext">
  485. <summary>Advances to the next value in the array.</summary>
  486. <returns>true if another item exists in the array; otherwise, false.</returns>
  487. </member>
  488. <member name="T:System.Collections.Immutable.ImmutableArray`1">
  489. <summary>Represents an array that is immutable; meaning it cannot be changed once it is created.
  490. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  491. <typeparam name="T">The type of element stored by the array.</typeparam>
  492. </member>
  493. <member name="M:System.Collections.Immutable.ImmutableArray`1.Add(`0)">
  494. <summary>Returns a copy of the original array with the specified item added to the end.</summary>
  495. <param name="item">The item to be added to the end of the array.</param>
  496. <returns>A new array with the specified item added to the end.</returns>
  497. </member>
  498. <member name="M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  499. <summary>Returns a copy of the original array with the specified elements added to the end of the array.</summary>
  500. <param name="items">The elements to add to the array.</param>
  501. <returns>A new array with the elements added.</returns>
  502. </member>
  503. <member name="M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Immutable.ImmutableArray{`0})">
  504. <summary>Returns a copy of the original array with the specified elements added to the end of the array.</summary>
  505. <param name="items">The elements to add to the array.</param>
  506. <returns>A new array with the elements added.</returns>
  507. </member>
  508. <member name="M:System.Collections.Immutable.ImmutableArray`1.As``1">
  509. <summary>Returns a new immutable array that contains the elements of this array cast to a different type.</summary>
  510. <typeparam name="TOther">The type of array element to return.</typeparam>
  511. <returns>An immutable array that contains the elements of this array, cast to a different type. If the cast fails, returns an array whose <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</returns>
  512. </member>
  513. <member name="M:System.Collections.Immutable.ImmutableArray`1.CastArray``1">
  514. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct by casting the underlying array to an array of type <paramref name="TOther">TOther</paramref>.</summary>
  515. <typeparam name="TOther"></typeparam>
  516. <returns></returns>
  517. <exception cref="T:System.InvalidCastException">Thrown if the cast is illegal.</exception>
  518. </member>
  519. <member name="M:System.Collections.Immutable.ImmutableArray`1.CastUp``1(System.Collections.Immutable.ImmutableArray{``0})">
  520. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct based on the contents of an existing instance, allowing a covariant static cast to efficiently reuse the existing array.</summary>
  521. <param name="items">The array to initialize the array with. No copy is made.</param>
  522. <typeparam name="TDerived"></typeparam>
  523. <returns></returns>
  524. </member>
  525. <member name="M:System.Collections.Immutable.ImmutableArray`1.Clear">
  526. <summary>Returns an array with all the elements removed.</summary>
  527. <returns>An array with all of the elements removed.</returns>
  528. </member>
  529. <member name="M:System.Collections.Immutable.ImmutableArray`1.Contains(`0)">
  530. <summary>Determines whether the specified item exists in the array.</summary>
  531. <param name="item">The item to search for.</param>
  532. <returns>true if the specified item was found in the array; otherwise false.</returns>
  533. </member>
  534. <member name="M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[],System.Int32)">
  535. <summary>Copies the contents of this array to the specified array starting at the specified destination index.</summary>
  536. <param name="destination">The array to copy to.</param>
  537. <param name="destinationIndex">The index in array where copying begins.</param>
  538. </member>
  539. <member name="M:System.Collections.Immutable.ImmutableArray`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
  540. <summary>Copies the specified items in this array to the specified array at the specified starting index.</summary>
  541. <param name="sourceIndex">The index of this array where copying begins.</param>
  542. <param name="destination">The array to copy to.</param>
  543. <param name="destinationIndex">The index in array where copying begins.</param>
  544. <param name="length">The number of elements to copy from this array.</param>
  545. </member>
  546. <member name="M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[])">
  547. <summary>Copies the contents of this array to the specified array.</summary>
  548. <param name="destination">The array to copy to.</param>
  549. </member>
  550. <member name="F:System.Collections.Immutable.ImmutableArray`1.Empty">
  551. <summary>Gets an empty immutable array.</summary>
  552. <returns></returns>
  553. </member>
  554. <member name="M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Collections.Immutable.ImmutableArray{`0})">
  555. <summary>Indicates whether specified array is equal to this array.</summary>
  556. <param name="other">An object to compare with this object.</param>
  557. <returns>true if <paramref name="other">other</paramref> is equal to this array; otherwise, false.</returns>
  558. </member>
  559. <member name="M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Object)">
  560. <summary>Determines if this array is equal to the specified object.</summary>
  561. <param name="obj">The <see cref="T:System.Object"></see> to compare with this array.</param>
  562. <returns>true if this array is equal to <paramref name="obj">obj</paramref>; otherwise, false.</returns>
  563. </member>
  564. <member name="M:System.Collections.Immutable.ImmutableArray`1.GetEnumerator">
  565. <summary>Returns an enumerator that iterates through the contents of the array.</summary>
  566. <returns>An enumerator.</returns>
  567. </member>
  568. <member name="M:System.Collections.Immutable.ImmutableArray`1.GetHashCode">
  569. <summary>Returns a hash code for this instance.</summary>
  570. <returns>A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.</returns>
  571. </member>
  572. <member name="M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  573. <summary>Searches the array for the specified item.</summary>
  574. <param name="item">The item to search for.</param>
  575. <param name="startIndex">The index at which to begin the search.</param>
  576. <param name="count">The number of elements to search.</param>
  577. <param name="equalityComparer">The equality comparer to use in the search.</param>
  578. <returns>The zero-based index position of the item if it is found, or -1 if it is not.</returns>
  579. </member>
  580. <member name="M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0)">
  581. <summary>Searches the array for the specified item.</summary>
  582. <param name="item">The item to search for.</param>
  583. <returns>The zero-based index position of the item if it is found, or -1 if it is not.</returns>
  584. </member>
  585. <member name="M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32)">
  586. <summary>Searches the array for the specified item.</summary>
  587. <param name="item">The item to search for.</param>
  588. <param name="startIndex">The index at which to begin the search.</param>
  589. <returns>The zero-based index position of the item if it is found, or -1 if it is not.</returns>
  590. </member>
  591. <member name="M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  592. <summary>Searches the array for the specified item.</summary>
  593. <param name="item">The item to search for.</param>
  594. <param name="startIndex">The index at which to begin the search.</param>
  595. <param name="equalityComparer">The equality comparer to use in the search.</param>
  596. <returns>The zero-based index position of the item if it is found, or -1 if it is not.</returns>
  597. </member>
  598. <member name="M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32)">
  599. <summary>Searches the array for the specified item.</summary>
  600. <param name="item">The item to search for.</param>
  601. <param name="startIndex">The index at which to begin the search.</param>
  602. <param name="count">The number of elements to search.</param>
  603. <returns>The zero-based index position of the item if it is found, or -1 if it is not.</returns>
  604. </member>
  605. <member name="M:System.Collections.Immutable.ImmutableArray`1.Insert(System.Int32,`0)">
  606. <summary>Returns a new array with the specified value inserted at the specified position.</summary>
  607. <param name="index">The 0-based index into the array at which the new item should be added.</param>
  608. <param name="item">The item to insert at the start of the array.</param>
  609. <returns>A new array with the item inserted at the specified index.</returns>
  610. </member>
  611. <member name="M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Immutable.ImmutableArray{`0})">
  612. <summary>Inserts the specified values at the specified index.</summary>
  613. <param name="index">The index at which to insert the value.</param>
  614. <param name="items">The elements to insert.</param>
  615. <returns>A new immutable array with the items inserted at the specified index.</returns>
  616. </member>
  617. <member name="M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  618. <summary>Inserts the specified values at the specified index.</summary>
  619. <param name="index">The index at which to insert the value.</param>
  620. <param name="items">The elements to insert.</param>
  621. <returns>A new immutable array with the items inserted at the specified index.</returns>
  622. </member>
  623. <member name="P:System.Collections.Immutable.ImmutableArray`1.IsDefault">
  624. <summary>Gets a value indicating whether this array was declared but not initialized.</summary>
  625. <returns>true to indicate the <see cref="System.Collections.Immutable.ImmutableArray`1"></see> is null; otherwise, false.</returns>
  626. </member>
  627. <member name="P:System.Collections.Immutable.ImmutableArray`1.IsDefaultOrEmpty">
  628. <summary>Gets a value indicating whether this <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> is empty or is not initialized.</summary>
  629. <returns>true to indicate the <see cref="System.Collections.Immutable.ImmutableArray`1"></see> is null or <see cref="System.Collections.Immutable.ImmutableArray`1.Empty"></see>; otherwise, false.</returns>
  630. </member>
  631. <member name="P:System.Collections.Immutable.ImmutableArray`1.IsEmpty">
  632. <summary>Gets a value indicating whether this <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> is empty.</summary>
  633. <returns>true to indicate the <see cref="System.Collections.Immutable.ImmutableArray`1"></see> is empty; otherwise, false.</returns>
  634. </member>
  635. <member name="P:System.Collections.Immutable.ImmutableArray`1.Item(System.Int32)">
  636. <summary>Gets the element at the specified index in the immutable array.</summary>
  637. <param name="index">The zero-based index of the element to get.</param>
  638. <returns>The element at the specified index in the immutable array.</returns>
  639. </member>
  640. <member name="M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0)">
  641. <summary>Searches the array for the specified item; starting at the end of the array.</summary>
  642. <param name="item">The item to search for.</param>
  643. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  644. </member>
  645. <member name="M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32)">
  646. <summary>Searches the array for the specified item; starting at the end of the array.</summary>
  647. <param name="item">The item to search for.</param>
  648. <param name="startIndex">The index at which to begin the search.</param>
  649. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  650. </member>
  651. <member name="M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32)">
  652. <summary>Searches the array for the specified item; starting at the end of the array.</summary>
  653. <param name="item">The item to search for.</param>
  654. <param name="startIndex">The index at which to begin the search.</param>
  655. <param name="count">The number of elements to search.</param>
  656. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  657. </member>
  658. <member name="M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  659. <summary>Searches the array for the specified item; starting at the end of the array.</summary>
  660. <param name="item">The item to search for.</param>
  661. <param name="startIndex">The index at which to begin the search.</param>
  662. <param name="count">The number of elements to search.</param>
  663. <param name="equalityComparer">The equality comparer to use in the search.</param>
  664. <returns>The 0-based index into the array where the item was found; or -1 if it could not be found.</returns>
  665. </member>
  666. <member name="P:System.Collections.Immutable.ImmutableArray`1.Length">
  667. <summary>Gets the number of elements in the array.</summary>
  668. <returns>The number of elements in the array</returns>
  669. </member>
  670. <member name="M:System.Collections.Immutable.ImmutableArray`1.OfType``1">
  671. <summary>Filters the elements of this array to those assignable to the specified type.</summary>
  672. <typeparam name="TResult">The type to filter the elements of the sequence on.</typeparam>
  673. <returns>An <see cref="System.Collections.IEnumerable"></see> that contains elements from the input sequence of type of <paramref name="TResult">TResult</paramref>.</returns>
  674. </member>
  675. <member name="M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}})">
  676. <summary>Returns a value that indicates if two arrays are equal.</summary>
  677. <param name="left">The array to the left of the operator.</param>
  678. <param name="right">The array to the right of the operator.</param>
  679. <returns>true if the arrays are equal; otherwise, false.</returns>
  680. </member>
  681. <member name="M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0})">
  682. <summary>Returns a value that indicates if two arrays are equal.</summary>
  683. <param name="left">The array to the left of the operator.</param>
  684. <param name="right">The array to the right of the operator.</param>
  685. <returns>true if the arrays are equal; otherwise, false.</returns>
  686. </member>
  687. <member name="M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0})">
  688. <summary>Returns a value that indicates whether two arrays are not equal.</summary>
  689. <param name="left">The array to the left of the operator.</param>
  690. <param name="right">The array to the right of the operator.</param>
  691. <returns>true if the arrays are not equal; otherwise, false.</returns>
  692. </member>
  693. <member name="M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}})">
  694. <summary>Checks for inequality between two array.</summary>
  695. <param name="left">The object to the left of the operator.</param>
  696. <param name="right">The object to the right of the operator.</param>
  697. <returns>true if the two arrays are not equal; otherwise, false.</returns>
  698. </member>
  699. <member name="M:System.Collections.Immutable.ImmutableArray`1.Remove(`0)">
  700. <summary>Returns an array with the first occurrence of the specified element removed from the array. If no match is found, the current array is returned.</summary>
  701. <param name="item">The item to remove.</param>
  702. <returns>A new array with the item removed.</returns>
  703. </member>
  704. <member name="M:System.Collections.Immutable.ImmutableArray`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
  705. <summary>Returns an array with the first occurrence of the specified element removed from the array.
  706. If no match is found, the current array is returned.</summary>
  707. <param name="item">The item to remove.</param>
  708. <param name="equalityComparer">The equality comparer to use in the search.</param>
  709. <returns>A new array with the specified item removed.</returns>
  710. </member>
  711. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveAll(System.Predicate{`0})">
  712. <summary>Removes all the items from the array that meet the specified condition.</summary>
  713. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  714. <returns>A new array with items that meet the specified condition removed.</returns>
  715. </member>
  716. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveAt(System.Int32)">
  717. <summary>Returns an array with the element at the specified position removed.</summary>
  718. <param name="index">The 0-based index of the element to remove from the returned array.</param>
  719. <returns>A new array with the item at the specified index removed.</returns>
  720. </member>
  721. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Generic.IEqualityComparer{`0})">
  722. <summary>Removes the specified items from this list.</summary>
  723. <param name="items">The items to remove if matches are found in this list.</param>
  724. <param name="equalityComparer">The equality comparer to use in the search.</param>
  725. <returns>A new array with the elements removed.</returns>
  726. </member>
  727. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  728. <summary>Removes the specified items from this array.</summary>
  729. <param name="items">The items to remove if matches are found in this list.</param>
  730. <param name="equalityComparer">The equality comparer to use in the search.</param>
  731. <returns>A new array with the elements removed.</returns>
  732. </member>
  733. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Int32,System.Int32)">
  734. <summary>Returns an array with the elements at the specified position removed.</summary>
  735. <param name="index">The 0-based index of the starting element to remove from the array.</param>
  736. <param name="length">The number of elements to remove from the array.</param>
  737. <returns>The new array with the specified elements removed.</returns>
  738. </member>
  739. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  740. <summary>Removes the specified items from this array.</summary>
  741. <param name="items">The items to remove if matches are found in this list.</param>
  742. <returns>A new array with the elements removed.</returns>
  743. </member>
  744. <member name="M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0})">
  745. <summary>Removes the specified values from this list.</summary>
  746. <param name="items">The items to remove if matches are found in this list.</param>
  747. <returns>A new list with the elements removed.</returns>
  748. </member>
  749. <member name="M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
  750. <summary>Finds the first element in the array equal to the specified value and replaces the value with the specified new value.</summary>
  751. <param name="oldValue">The value to find and replace in the array.</param>
  752. <param name="newValue">The value to replace the oldvalue with.</param>
  753. <param name="equalityComparer">The equality comparer to use to compare values.</param>
  754. <returns>A new array that contains <paramref name="newValue">newValue</paramref> even if the new and old values are the same.</returns>
  755. <exception cref="T:System.ArgumentException"><paramref name="oldValue">oldValue</paramref> is not found in the array.</exception>
  756. </member>
  757. <member name="M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0)">
  758. <summary>Finds the first element in the array equal to the specified value and replaces the value with the specified new value.</summary>
  759. <param name="oldValue">The value to find and replace in the array.</param>
  760. <param name="newValue">The value to replace the oldvalue with.</param>
  761. <returns>A new array that contains <paramref name="newValue">newValue</paramref> even if the new and old values are the same.</returns>
  762. <exception cref="T:System.ArgumentException"><paramref name="oldValue">oldValue</paramref> is not found in the array.</exception>
  763. </member>
  764. <member name="M:System.Collections.Immutable.ImmutableArray`1.SetItem(System.Int32,`0)">
  765. <summary>Replaces the item at the specified index with the specified item.</summary>
  766. <param name="index">The index of the item to replace.</param>
  767. <param name="item">The item to add to the list.</param>
  768. <returns>The new array that contains <paramref name="item">item</paramref> at the specified index.</returns>
  769. </member>
  770. <member name="M:System.Collections.Immutable.ImmutableArray`1.Sort">
  771. <summary>Sorts the elements in the immutable array using the default comparer.</summary>
  772. <returns>A new immutable array that contains the items in this array, in sorted order.</returns>
  773. </member>
  774. <member name="M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Collections.Generic.IComparer{`0})">
  775. <summary>Sorts the elements in the immutable array using the specified comparer.</summary>
  776. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer</param>
  777. <returns>A new immutable array that contains the items in this array, in sorted order.</returns>
  778. </member>
  779. <member name="M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Comparison{`0})">
  780. <summary>Sorts the elements in the entire <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> using the specified <see cref="T:System.Comparison`1"></see>.</summary>
  781. <param name="comparison">The <see cref="T:System.Comparison`1"></see> to use when comparing elements.</param>
  782. <returns>The sorted list.</returns>
  783. <exception cref="T:System.ArgumentNullException"><paramref name="comparison">comparison</paramref> is null.</exception>
  784. </member>
  785. <member name="M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
  786. <summary>Sorts the specified elements in the immutable array using the specified comparer.</summary>
  787. <param name="index">The index of the first element to sort.</param>
  788. <param name="count">The number of elements to include in the sort.</param>
  789. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer</param>
  790. <returns>A new immutable array that contains the items in this array, in sorted order.</returns>
  791. </member>
  792. <member name="M:System.Collections.Immutable.ImmutableArray`1.ToBuilder">
  793. <summary>Creates a mutable array that has the same contents as this array and can be efficiently mutated across multiple operations using standard mutable interfaces.</summary>
  794. <returns>The new builder with the same contents as this array.</returns>
  795. </member>
  796. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  797. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  798. <param name="item">The item to add to the end of the array.</param>
  799. </member>
  800. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#ICollection{T}#Clear">
  801. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  802. </member>
  803. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#ICollection{T}#Count">
  804. <summary>Gets the number of array in the collection.</summary>
  805. <returns></returns>
  806. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  807. </member>
  808. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  809. <summary>Gets a value indicating whether this instance is read only.</summary>
  810. <returns>true if this instance is read only; otherwise, false.</returns>
  811. </member>
  812. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
  813. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  814. <param name="item">The object to remove from the array.</param>
  815. <returns>Throws <see cref="System.NotSupportedException"></see> in all cases.</returns>
  816. </member>
  817. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  818. <summary>Returns an enumerator that iterates through the array.</summary>
  819. <returns>An enumerator that can be used to iterate through the array.</returns>
  820. </member>
  821. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)">
  822. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  823. <param name="index">The index of the location to insert the item.</param>
  824. <param name="item">The item to insert.</param>
  825. </member>
  826. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IList{T}#Item(System.Int32)">
  827. <summary>Gets or sets the element at the specified index in the read-only list.</summary>
  828. <param name="index">The zero-based index of the element to get.</param>
  829. <returns>The element at the specified index in the read-only list.</returns>
  830. <exception cref="T:System.NotSupportedException">Always thrown from the setter.</exception>
  831. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  832. </member>
  833. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)">
  834. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  835. <param name="index">The index.</param>
  836. </member>
  837. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IReadOnlyCollection{T}#Count">
  838. <summary>Gets the number of array in the collection.</summary>
  839. <returns></returns>
  840. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  841. </member>
  842. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#Generic#IReadOnlyList{T}#Item(System.Int32)">
  843. <summary>Gets the element at the specified index.</summary>
  844. <param name="index">The index.</param>
  845. <returns>The element.</returns>
  846. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  847. </member>
  848. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  849. <summary>Copies this array to another array starting at the specified index.</summary>
  850. <param name="array">The array to copy this array to.</param>
  851. <param name="index">The index in the destination array to start the copy operation.</param>
  852. </member>
  853. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#ICollection#Count">
  854. <summary>Gets the size of the array.</summary>
  855. <returns></returns>
  856. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  857. </member>
  858. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#ICollection#IsSynchronized">
  859. <summary>See the <see cref="T:System.Collections.ICollection"></see> interface.</summary>
  860. <returns></returns>
  861. </member>
  862. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#ICollection#SyncRoot">
  863. <summary>Gets the sync root.</summary>
  864. <returns></returns>
  865. </member>
  866. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IEnumerable#GetEnumerator">
  867. <summary>Returns an enumerator that iterates through the immutable array.</summary>
  868. <returns>An enumerator that iterates through the immutable array.</returns>
  869. </member>
  870. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Add(System.Object)">
  871. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  872. <param name="value">The value to add to the array.</param>
  873. <returns>Throws <see cref="System.NotSupportedException"></see> in all cases.</returns>
  874. </member>
  875. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Clear">
  876. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  877. </member>
  878. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Contains(System.Object)">
  879. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  880. <param name="value">The value to check for.</param>
  881. <returns>Throws <see cref="System.NotSupportedException"></see> in all cases.</returns>
  882. </member>
  883. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#IndexOf(System.Object)">
  884. <summary>Gets the value at the specified index.</summary>
  885. <param name="value">The value to return the index of.</param>
  886. <returns>The value of the element at the specified index.</returns>
  887. </member>
  888. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Insert(System.Int32,System.Object)">
  889. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  890. <param name="index">Index that indicates where to insert the item.</param>
  891. <param name="value">The value to insert.</param>
  892. </member>
  893. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#IsFixedSize">
  894. <summary>Gets a value indicating whether this instance is fixed size.</summary>
  895. <returns>true if this instance is fixed size; otherwise, false.</returns>
  896. </member>
  897. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#IsReadOnly">
  898. <summary>Gets a value indicating whether this instance is read only.</summary>
  899. <returns>true if this instance is read only; otherwise, false.</returns>
  900. </member>
  901. <member name="P:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Item(System.Int32)">
  902. <summary>Gets or sets the <see cref="T:System.Object"></see> at the specified index.</summary>
  903. <param name="index">The index.</param>
  904. <returns></returns>
  905. <exception cref="T:System.NotSupportedException">Always thrown from the setter.</exception>
  906. <exception cref="T:System.InvalidOperationException">Thrown if the <see cref="System.Collections.Immutable.ImmutableArray`1.IsDefault"></see> property returns true.</exception>
  907. </member>
  908. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#Remove(System.Object)">
  909. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  910. <param name="value">The value to remove from the array.</param>
  911. </member>
  912. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IList#RemoveAt(System.Int32)">
  913. <summary>Throws <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
  914. <param name="index">The index of the item to remove.</param>
  915. </member>
  916. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#Add(`0)">
  917. <summary>Returns a copy of the original array with the specified item added to the end.</summary>
  918. <param name="value">The value to add to the end of the array.</param>
  919. <returns>A new array with the specified item added to the end.</returns>
  920. </member>
  921. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#AddRange(System.Collections.Generic.IEnumerable{`0})">
  922. <summary>Returns a copy of the original array with the specified elements added to the end of the array.</summary>
  923. <param name="items">The elements to add to the end of the array.</param>
  924. <returns>A new array with the elements added to the end.</returns>
  925. </member>
  926. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#Clear">
  927. <summary>Returns an array with all the elements removed.</summary>
  928. <returns>Returns an array with all the elements removed.</returns>
  929. </member>
  930. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#Insert(System.Int32,`0)">
  931. <summary>Returns a new array with the specified value inserted at the specified position.</summary>
  932. <param name="index">The 0-based index into the array at which the new item should be added.</param>
  933. <param name="element">The item to insert at the start of the array.</param>
  934. <returns>A new array with the specified value inserted.</returns>
  935. </member>
  936. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  937. <summary>Inserts the specified values at the specified index</summary>
  938. <param name="index">The index at which to insert the value.</param>
  939. <param name="items">The elements to insert.</param>
  940. <returns>A new array with the specified values inserted.</returns>
  941. </member>
  942. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
  943. <summary>Returns an array with the first occurrence of the specified element removed from the array; if no match is found, the current array is returned.</summary>
  944. <param name="value">The value to remove from the array.</param>
  945. <param name="equalityComparer">The equality comparer to use in the search.</param>
  946. <returns>A new array with the value removed.</returns>
  947. </member>
  948. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#RemoveAll(System.Predicate{`0})">
  949. <summary>Removes all the items from the array that meet the specified condition.</summary>
  950. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  951. <returns>A new array with items that meet the specified condition removed.</returns>
  952. </member>
  953. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#RemoveAt(System.Int32)">
  954. <summary>Returns an array with the element at the specified position removed.</summary>
  955. <param name="index">The 0-based index of the element to remove from the returned array.</param>
  956. <returns>A new array with the specified item removed.</returns>
  957. </member>
  958. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  959. <summary>Removes the specified items from this array.</summary>
  960. <param name="items">The items to remove if matches are found in this list.</param>
  961. <param name="equalityComparer">The equality comparer to use in the search.</param>
  962. <returns>A new array with the elements removed.</returns>
  963. </member>
  964. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#RemoveRange(System.Int32,System.Int32)">
  965. <summary>Returns an array with the elements at the specified position removed.</summary>
  966. <param name="index">The 0-based index of the starting element to remove from the array.</param>
  967. <param name="count">The number of elements to remove from the array.</param>
  968. <returns>The new array with the specified elements removed.</returns>
  969. </member>
  970. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
  971. <summary>Finds the first element in the array equal to the specified value and replaces the value with the specified new value.</summary>
  972. <param name="oldValue">The value to find and replace in the array.</param>
  973. <param name="newValue">The value to replace the oldvalue with.</param>
  974. <param name="equalityComparer">The equality comparer to use to compare values.</param>
  975. <returns>A new array that contains <paramref name="newValue">newValue</paramref> even if the new and old values are the same.</returns>
  976. <exception cref="T:System.ArgumentException"><paramref name="oldValue">oldValue</paramref> is not found in the array.</exception>
  977. </member>
  978. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#Immutable#IImmutableList{T}#SetItem(System.Int32,`0)">
  979. <summary>Replaces the item at the specified index with the specified item.</summary>
  980. <param name="index">The index of the item to replace.</param>
  981. <param name="value">The value to add to the list.</param>
  982. <returns>The new array that contains <paramref name="item">item</paramref> at the specified index.</returns>
  983. </member>
  984. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IStructuralComparable#CompareTo(System.Object,System.Collections.IComparer)">
  985. <summary>Determines whether the current collection element precedes, occurs in the same position as, or follows another element in the sort order.</summary>
  986. <param name="other">The element to compare with the current instance.</param>
  987. <param name="comparer">The object used to compare members of the current array with the corresponding members of other array.</param>
  988. <returns>An integer that indicates whether the current element precedes, is in the same position or follows the other element.</returns>
  989. <exception cref="T:System.ArgumentException">The arrays are not the same length.</exception>
  990. </member>
  991. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IStructuralEquatable#Equals(System.Object,System.Collections.IEqualityComparer)">
  992. <summary>Determines whether this array is structurally equal to the specified array.</summary>
  993. <param name="other">The array to compare with the current instance.</param>
  994. <param name="comparer">An object that determines whether the current instance and other are structurally equal.</param>
  995. <returns>true if the two arrays are structurally equal; otherwise, false.</returns>
  996. </member>
  997. <member name="M:System.Collections.Immutable.ImmutableArray`1.System#Collections#IStructuralEquatable#GetHashCode(System.Collections.IEqualityComparer)">
  998. <summary>Returns a hash code for the current instance.</summary>
  999. <param name="comparer">An object that computes the hash code of the current object.</param>
  1000. <returns>The hash code for the current instance.</returns>
  1001. </member>
  1002. <member name="T:System.Collections.Immutable.ImmutableArray">
  1003. <summary>Provides methods for creating an array that is immutable; meaning it cannot be changed once it is created.
  1004. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1005. </member>
  1006. <member name="M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0)">
  1007. <summary>Searches the sorted immutable array for a specified element using the default comparer and returns the zero-based index of the element, if it’s found.</summary>
  1008. <param name="array">The sorted array to search.</param>
  1009. <param name="value">The object to search for.</param>
  1010. <typeparam name="T">The type of element stored in the array.</typeparam>
  1011. <returns>The zero-based index of the item in the array, if 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="value">value</paramref> or, if there is no larger element, the bitwise complement of <see cref="System.Collections.Generic.ICollection`1.Count"></see>.</returns>
  1012. <exception cref="T:System.InvalidOperationException"><paramref name="value">value</paramref> does not implement <see cref="System.IComparable"></see> or the search encounters an element that does not implement <see cref="System.IComparable"></see>.</exception>
  1013. </member>
  1014. <member name="M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0,System.Collections.Generic.IComparer{``0})">
  1015. <summary>Searches a sorted immutable array for a specified element and returns the zero-based index of the element, if it’s found.</summary>
  1016. <param name="array">The sorted array to search.</param>
  1017. <param name="value">The object to search for.</param>
  1018. <param name="comparer">The comparer implementation to use when comparing elements, or null to use the default comparer.</param>
  1019. <typeparam name="T">The type of element stored in the array.</typeparam>
  1020. <returns>The zero-based index of the item in the array, if 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="value">value</paramref> or, if there is no larger element, the bitwise complement of <see cref="System.Collections.Generic.ICollection`1.Count"></see>.</returns>
  1021. <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null and <paramref name="value">value</paramref> does not implement <see cref="System.IComparable"></see> or the search encounters an element that does not implement <see cref="System.IComparable"></see>.</exception>
  1022. </member>
  1023. <member name="M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0)">
  1024. <summary>Searches a sorted immutable array for a specified element and returns the zero-based index of the element, if it’s found.</summary>
  1025. <param name="array">The sorted array to search.</param>
  1026. <param name="index">The starting index of the range to search.</param>
  1027. <param name="length">The length of the range to search.</param>
  1028. <param name="value">The object to search for.</param>
  1029. <typeparam name="T">The type of element stored in the array.</typeparam>
  1030. <returns>The zero-based index of the item in the array, if 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="value">value</paramref> or, if there is no larger element, the bitwise complement of <see cref="System.Collections.Generic.ICollection`1.Count"></see>.</returns>
  1031. <exception cref="T:System.InvalidOperationException"><paramref name="value">value</paramref> does not implement <see cref="System.IComparable"></see> or the search encounters an element that does not implement <see cref="System.IComparable"></see>.</exception>
  1032. </member>
  1033. <member name="M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0})">
  1034. <summary>Searches a sorted immutable array for a specified element and returns the zero-based index of the element.</summary>
  1035. <param name="array">The sorted array to search.</param>
  1036. <param name="index">The starting index of the range to search.</param>
  1037. <param name="length">The length of the range to search.</param>
  1038. <param name="value">The object to search for.</param>
  1039. <param name="comparer">The comparer to use when comparing elements for equality or null to use the default comparer.</param>
  1040. <typeparam name="T">The type of element stored in the array.</typeparam>
  1041. <returns>The zero-based index of the item in the array, if 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="value">value</paramref> or, if there is no larger element, the bitwise complement of <see cref="System.Collections.Generic.ICollection`1.Count"></see>.</returns>
  1042. <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null and <paramref name="value">value</paramref> does not implement <see cref="System.IComparable"></see> or the search encounters an element that does not implement <see cref="System.IComparable"></see>.</exception>
  1043. </member>
  1044. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0,``0)">
  1045. <summary>Creates an immutable array that contains the specified objects.</summary>
  1046. <param name="item1">The first object to store in the array.</param>
  1047. <param name="item2">The second object to store in the array.</param>
  1048. <param name="item3">The third object to store in the array.</param>
  1049. <param name="item4">The fourth object to store in the array.</param>
  1050. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1051. <returns>An immutable array that contains the specified objects.</returns>
  1052. </member>
  1053. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0[],System.Int32,System.Int32)">
  1054. <summary>Creates an immutable array with specified objects from another array.</summary>
  1055. <param name="items">The source array of objects.</param>
  1056. <param name="start">The index of the first element to copy from items.</param>
  1057. <param name="length">The number of elements from items to include in this immutable array.</param>
  1058. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1059. <returns>An immutable array that contains the specified objects from the source array.</returns>
  1060. </member>
  1061. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32)">
  1062. <summary>Creates an immutable array with the specified objects from another immutable array.</summary>
  1063. <param name="items">The source array of objects.</param>
  1064. <param name="start">The index of the first element to copy from items.</param>
  1065. <param name="length">The number of elements from items to include in this immutable array.</param>
  1066. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1067. <returns>An immutable array that contains the specified objects from the source array.</returns>
  1068. </member>
  1069. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0)">
  1070. <summary>Creates an immutable array that contains the specified objects.</summary>
  1071. <param name="item1">The first object to store in the array.</param>
  1072. <param name="item2">The second object to store in the array.</param>
  1073. <param name="item3">The third object to store in the array.</param>
  1074. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1075. <returns>An immutable array that contains the specified objects.</returns>
  1076. </member>
  1077. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0[])">
  1078. <summary>Creates an immutable array from the specified array of objects.</summary>
  1079. <param name="items">The array of objects to populate the array with.</param>
  1080. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1081. <returns>An immutable array that contains the array of items.</returns>
  1082. </member>
  1083. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0)">
  1084. <summary>Creates an immutable array that contains the specified object.</summary>
  1085. <param name="item">The object to store in the array.</param>
  1086. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1087. <returns>Returns an immutable array that contains the specified object.</returns>
  1088. </member>
  1089. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1">
  1090. <summary>Creates an empty immutable array.</summary>
  1091. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1092. <returns>An empty immutable array.</returns>
  1093. </member>
  1094. <member name="M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0)">
  1095. <summary>Creates an immutable array that contains the specified objects.</summary>
  1096. <param name="item1">The first object to store in the array.</param>
  1097. <param name="item2">The second object to store in the array.</param>
  1098. <typeparam name="T">The type of elements stored in the array.</typeparam>
  1099. <returns>Returns an immutable array that contains the specified objects.</returns>
  1100. </member>
  1101. <member name="M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1">
  1102. <summary>Creates a mutable array that can be converted to an <see cref="T:System.Collections.Immutable.ImmutableArray"></see> without allocating new memory.</summary>
  1103. <typeparam name="T">The type of elements stored in the builder.</typeparam>
  1104. <returns>A mutable array of the specified type that can be efficiently converted to an immutable array.</returns>
  1105. </member>
  1106. <member name="M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1(System.Int32)">
  1107. <summary>Creates a mutable array that can be converted to an <see cref="T:System.Collections.Immutable.ImmutableArray"></see> without allocating new memory.</summary>
  1108. <param name="initialCapacity">The initial capacity of the builder.</param>
  1109. <typeparam name="T">The type of elements stored in the builder.</typeparam>
  1110. <returns>A mutable array of the specified type that can be efficiently converted to an immutable array.</returns>
  1111. </member>
  1112. <member name="M:System.Collections.Immutable.ImmutableArray.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  1113. <summary>Creates a new <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> populated with the specified items.</summary>
  1114. <param name="items">The elements to add to the array.</param>
  1115. <typeparam name="T">The type of element stored in the array.</typeparam>
  1116. <returns>An immutable array that contains the specified items.</returns>
  1117. </member>
  1118. <member name="M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1,``2},``1)">
  1119. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct.</summary>
  1120. <param name="items">The source array to initialize the resulting array with.</param>
  1121. <param name="start">The index of the first element in the source array to include in the resulting array.</param>
  1122. <param name="length">The number of elements from the source array to include in the resulting array.</param>
  1123. <param name="selector">The function to apply to each element from the source array included in the resulting array.</param>
  1124. <param name="arg">An argument to be passed to the selector mapping function.</param>
  1125. <typeparam name="TSource"></typeparam>
  1126. <typeparam name="TArg"></typeparam>
  1127. <typeparam name="TResult"></typeparam>
  1128. <returns></returns>
  1129. </member>
  1130. <member name="M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1,``2},``1)">
  1131. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct.</summary>
  1132. <param name="items">The source array to initialize the resulting array with.</param>
  1133. <param name="selector">The function to apply to each element from the source array.</param>
  1134. <param name="arg">An argument to be passed to the selector mapping function.</param>
  1135. <typeparam name="TSource"></typeparam>
  1136. <typeparam name="TArg"></typeparam>
  1137. <typeparam name="TResult"></typeparam>
  1138. <returns></returns>
  1139. </member>
  1140. <member name="M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1})">
  1141. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct.</summary>
  1142. <param name="items">The source array to initialize the resulting array with.</param>
  1143. <param name="selector">The function to apply to each element from the source array.</param>
  1144. <typeparam name="TSource"></typeparam>
  1145. <typeparam name="TResult"></typeparam>
  1146. <returns></returns>
  1147. </member>
  1148. <member name="M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1})">
  1149. <summary>Initializes a new instance of the <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> struct.</summary>
  1150. <param name="items">The source array to initialize the resulting array with.</param>
  1151. <param name="start">The index of the first element in the source array to include in the resulting array.</param>
  1152. <param name="length">The number of elements from the source array to include in the resulting array.</param>
  1153. <param name="selector">The function to apply to each element from the source array included in the resulting array.</param>
  1154. <typeparam name="TSource"></typeparam>
  1155. <typeparam name="TResult"></typeparam>
  1156. <returns></returns>
  1157. </member>
  1158. <member name="M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Collections.Generic.IEnumerable{``0})">
  1159. <summary>Creates an immutable array from the specified collection.</summary>
  1160. <param name="items">The collection of objects to copy to the immutable array.</param>
  1161. <typeparam name="TSource">The type of elements contained in items.</typeparam>
  1162. <returns>An immutable array that contains the specified collection of objects.</returns>
  1163. </member>
  1164. <member name="T:System.Collections.Immutable.ImmutableDictionary`2.Builder">
  1165. <summary>Represents a hash map that mutates with little or no memory allocations and that can produce or build on immutable hash map instances very efficiently.
  1166. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1167. <typeparam name="TKey"></typeparam>
  1168. <typeparam name="TValue"></typeparam>
  1169. </member>
  1170. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1171. <summary>Adds the specified item to the immutable dictionary.</summary>
  1172. <param name="item">The object to add to the dictionary.</param>
  1173. <exception cref="T:System.NotSupportedException">The dictionary is read-only.</exception>
  1174. </member>
  1175. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(`0,`1)">
  1176. <summary>Adds an element that has the specified key and value to the immutable dictionary.</summary>
  1177. <param name="key">The key of the element to add.</param>
  1178. <param name="value">The value of the element to add.</param>
  1179. <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
  1180. <exception cref="T:System.ArgumentException">An element with the same key already exists in the dictionary.</exception>
  1181. <exception cref="T:System.NotSupportedException">The dictionary is read-only.</exception>
  1182. </member>
  1183. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  1184. <summary>Adds a sequence of values to this collection.</summary>
  1185. <param name="items">The items to add to this collection.</param>
  1186. </member>
  1187. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Clear">
  1188. <summary>Removes all items from the immutable dictionary.</summary>
  1189. <exception cref="T:System.NotSupportedException">The dictionary is read-only.</exception>
  1190. </member>
  1191. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1192. <summary>Determines whether the immutable dictionary contains a specific value.</summary>
  1193. <param name="item">The object to locate in the dictionary.</param>
  1194. <returns>true if <paramref name="item">item</paramref> is found in the dictionary; otherwise, false.</returns>
  1195. </member>
  1196. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsKey(`0)">
  1197. <summary>Determines whether the immutable dictionary contains an element that has the specified key.</summary>
  1198. <param name="key">The key to locate in the dictionary.</param>
  1199. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  1200. <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
  1201. </member>
  1202. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsValue(`1)">
  1203. <summary>Determines whether the immutable dictionary contains an element that has the specified value.</summary>
  1204. <param name="value">The value to locate in the immutable dictionary. The value can be null for reference types.</param>
  1205. <returns>true if the dictionary contains an element with the specified value; otherwise, false.</returns>
  1206. </member>
  1207. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.Count">
  1208. <summary>Gets the number of elements contained in the immutable dictionary.</summary>
  1209. <returns>The number of elements contained in the immutable dictionary.</returns>
  1210. </member>
  1211. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetEnumerator">
  1212. <summary>Returns an enumerator that iterates through the immutable dictionary.</summary>
  1213. <returns>An enumerator that can be used to iterate through the collection.</returns>
  1214. </member>
  1215. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0,`1)">
  1216. <summary>Gets the value for a given key if a matching key exists in the dictionary.</summary>
  1217. <param name="key">The key to search for.</param>
  1218. <param name="defaultValue">The default value to return if no matching key is found in the dictionary.</param>
  1219. <returns>The value for the key, or <paramref name="defaultValue">defaultValue</paramref> if no matching key was found.</returns>
  1220. </member>
  1221. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0)">
  1222. <summary>Gets the value for a given key if a matching key exists in the dictionary.</summary>
  1223. <param name="key">The key to search for.</param>
  1224. <returns>The value for the key, or default(TValue) if no matching key was found.</returns>
  1225. </member>
  1226. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.Item(`0)">
  1227. <summary>Gets or sets the element with the specified key.</summary>
  1228. <param name="key">The element to get or set.</param>
  1229. <returns>The element that has the specified key.</returns>
  1230. </member>
  1231. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.KeyComparer">
  1232. <summary>Gets or sets the key comparer.</summary>
  1233. <returns>The key comparer.</returns>
  1234. </member>
  1235. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.Keys">
  1236. <summary>Gets a collection that contains the keys of the immutable dictionary.</summary>
  1237. <returns>A collection that contains the keys of the object that implements the immutable dictionary.</returns>
  1238. </member>
  1239. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1240. <summary>Removes the first occurrence of a specific object from the immutable dictionary.</summary>
  1241. <param name="item">The object to remove from the dictionary.</param>
  1242. <returns>true if <paramref name="item">item</paramref> was successfully removed from the dictionary; otherwise, false. This method also returns false if <paramref name="item">item</paramref> is not found in the dictionary.</returns>
  1243. <exception cref="T:System.NotSupportedException">The dictionary is read-only.</exception>
  1244. </member>
  1245. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(`0)">
  1246. <summary>Removes the element with the specified key from the immutable dictionary.</summary>
  1247. <param name="key">The key of the element to remove.</param>
  1248. <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key">key</paramref> was not found in the dictionary.</returns>
  1249. <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
  1250. <exception cref="T:System.NotSupportedException">The dictionary is read-only.</exception>
  1251. </member>
  1252. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  1253. <summary>Removes any entries with keys that match those found in the specified sequence from the immutable dictionary.</summary>
  1254. <param name="keys">The keys for entries to remove from the dictionary.</param>
  1255. </member>
  1256. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ToImmutable">
  1257. <summary>Creates an immutable dictionary based on the contents of this instance.</summary>
  1258. <returns>An immutable dictionary.</returns>
  1259. </member>
  1260. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetKey(`0,`0@)">
  1261. <summary>Determines whether this dictionary contains a specified key.</summary>
  1262. <param name="equalKey">The key to search for.</param>
  1263. <param name="actualKey">The matching key located in the dictionary if found, or equalkey if no match is found.</param>
  1264. <returns>true if a match for <paramref name="equalKey">equalKey</paramref> is found; otherwise, false.</returns>
  1265. </member>
  1266. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetValue(`0,`1@)">
  1267. <summary>Returns the value associated with the specified key.</summary>
  1268. <param name="key">The key whose value will be retrieved.</param>
  1269. <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, returns the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
  1270. <returns>true if the object that implements the immutable dictionary contains an element with the specified key; otherwise, false.</returns>
  1271. <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
  1272. </member>
  1273. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.ValueComparer">
  1274. <summary>Gets or sets the value comparer.</summary>
  1275. <returns>The value comparer.</returns>
  1276. </member>
  1277. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.Values">
  1278. <summary>Gets a collection that contains the values of the immutable dictionary.</summary>
  1279. <returns>A collection that contains the values of the object that implements the dictionary.</returns>
  1280. </member>
  1281. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1282. <param name="array"></param>
  1283. <param name="arrayIndex"></param>
  1284. </member>
  1285. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
  1286. <returns></returns>
  1287. </member>
  1288. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  1289. <returns></returns>
  1290. </member>
  1291. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  1292. <returns></returns>
  1293. </member>
  1294. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
  1295. <returns></returns>
  1296. </member>
  1297. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1298. <summary>Copies the elements of the dictionary to an array of type <see cref="T:System.Collections.Generic.KeyValuePair`2"></see>, starting at the specified array index.</summary>
  1299. <param name="array">The one-dimensional array of type <see cref="T:System.Collections.Generic.KeyValuePair`2"></see> that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.</param>
  1300. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  1301. </member>
  1302. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#ICollection#IsSynchronized">
  1303. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  1304. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  1305. </member>
  1306. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#ICollection#SyncRoot">
  1307. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  1308. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  1309. </member>
  1310. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Add(System.Object,System.Object)">
  1311. <summary>Adds an element with the provided key and value to the dictionary object.</summary>
  1312. <param name="key">The key of the element to add.</param>
  1313. <param name="value">The value of the element to add.</param>
  1314. </member>
  1315. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Contains(System.Object)">
  1316. <summary>Determines whether the dictionary object contains an element with the specified key.</summary>
  1317. <param name="key">The key to locate.</param>
  1318. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  1319. </member>
  1320. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#GetEnumerator">
  1321. <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the dictionary.</summary>
  1322. <returns>An <see cref="System.Collections.IDictionaryEnumerator"></see> object for the dictionary.</returns>
  1323. <exception cref="T:System.NotImplementedException"></exception>
  1324. </member>
  1325. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#IsFixedSize">
  1326. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size.</summary>
  1327. <returns>true if the <see cref="System.Collections.IDictionary"></see> object has a fixed size; otherwise, false.</returns>
  1328. </member>
  1329. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#IsReadOnly">
  1330. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  1331. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  1332. </member>
  1333. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Item(System.Object)">
  1334. <summary>Gets or sets the element with the specified key.</summary>
  1335. <param name="key">The key.</param>
  1336. <returns></returns>
  1337. </member>
  1338. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Keys">
  1339. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  1340. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the keys of the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  1341. </member>
  1342. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Remove(System.Object)">
  1343. <summary>Removes the element with the specified key from the dictionary.</summary>
  1344. <param name="key">The key of the element to remove.</param>
  1345. </member>
  1346. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IDictionary#Values">
  1347. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  1348. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the values in the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  1349. </member>
  1350. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Builder.System#Collections#IEnumerable#GetEnumerator">
  1351. <summary>Returns an enumerator that iterates through a collection.</summary>
  1352. <returns>An enumerator object that can be used to iterate through the collection.</returns>
  1353. </member>
  1354. <member name="T:System.Collections.Immutable.ImmutableDictionary`2.Enumerator">
  1355. <summary>Enumerates the contents of the immutable dictionary without allocating any memory.
  1356. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1357. <typeparam name="TKey"></typeparam>
  1358. <typeparam name="TValue"></typeparam>
  1359. </member>
  1360. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Current">
  1361. <summary>Gets the element at the current position of the enumerator.</summary>
  1362. <returns>The element in the dictionary at the current position of the enumerator.</returns>
  1363. </member>
  1364. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Dispose">
  1365. <summary>Releases the resources used by the current instance of the <see cref="T:System.Collections.Immutable.ImmutableDictionary`2.Enumerator"></see> class.</summary>
  1366. </member>
  1367. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.MoveNext">
  1368. <summary>Advances the enumerator to the next element of the immutable dictionary.</summary>
  1369. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the dictionary.</returns>
  1370. <exception cref="T:System.InvalidOperationException">The dictionary was modified after the enumerator was created.</exception>
  1371. </member>
  1372. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Reset">
  1373. <summary>Sets the enumerator to its initial position, which is before the first element in the dictionary.</summary>
  1374. <exception cref="T:System.InvalidOperationException">The dictionary was modified after the enumerator was created.</exception>
  1375. </member>
  1376. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
  1377. <summary>Gets the current element.</summary>
  1378. <returns></returns>
  1379. </member>
  1380. <member name="T:System.Collections.Immutable.ImmutableDictionary`2">
  1381. <summary>Represents an immutable, unordered collection of keys and values.
  1382. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1383. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  1384. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  1385. </member>
  1386. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Add(`0,`1)">
  1387. <summary>Adds an element with the specified key and value to the immutable dictionary.</summary>
  1388. <param name="key">The key of the element to add.</param>
  1389. <param name="value">The value of the element to add.</param>
  1390. <returns>A new immutable dictionary that contains the additional key/value pair.</returns>
  1391. <exception cref="T:System.ArgumentException">The given key already exists in the dictionary but has a different value.</exception>
  1392. </member>
  1393. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  1394. <summary>Adds the specified key/value pairs to the immutable dictionary.</summary>
  1395. <param name="pairs">The key/value pairs to add.</param>
  1396. <returns>A new immutable dictionary that contains the additional key/value pairs.</returns>
  1397. <exception cref="T:System.ArgumentException">One of the given keys already exists in the dictionary but has a different value.</exception>
  1398. </member>
  1399. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Clear">
  1400. <summary>Retrieves an empty immutable dictionary that has the same ordering and key/value comparison rules as this dictionary instance.</summary>
  1401. <returns>An empty dictionary with equivalent ordering and key/value comparison rules.</returns>
  1402. </member>
  1403. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1404. <summary>Determines whether this immutable dictionary contains the specified key/value pair.</summary>
  1405. <param name="pair">The key/value pair to locate.</param>
  1406. <returns>true if the specified key/value pair is found in the dictionary; otherwise, false.</returns>
  1407. </member>
  1408. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.ContainsKey(`0)">
  1409. <summary>Determines whether the immutable dictionary contains an element with the specified key.</summary>
  1410. <param name="key">The key to locate.</param>
  1411. <returns>true if the immutable dictionary contains an element with the specified key; otherwise, false.</returns>
  1412. </member>
  1413. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.ContainsValue(`1)">
  1414. <summary>Determines whether the immutable dictionary contains an element with the specified value.</summary>
  1415. <param name="value">The value to locate. The value can be null for reference types.</param>
  1416. <returns>true if the dictionary contains an element with the specified value; otherwise, false.</returns>
  1417. </member>
  1418. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Count">
  1419. <summary>Gets the number of key/value pairs in the immutable dictionary.</summary>
  1420. <returns>The number of key/value pairs in the dictionary.</returns>
  1421. </member>
  1422. <member name="F:System.Collections.Immutable.ImmutableDictionary`2.Empty">
  1423. <summary>Gets an empty immutable dictionary</summary>
  1424. <returns></returns>
  1425. </member>
  1426. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.GetEnumerator">
  1427. <summary>Returns an enumerator that iterates through the immutable dictionary.</summary>
  1428. <returns>An enumerator that can be used to iterate through the dictionary.</returns>
  1429. </member>
  1430. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.IsEmpty">
  1431. <summary>Gets a value that indicates whether this instance of the immutable dictionary is empty.</summary>
  1432. <returns>true if this instance is empty; otherwise, false.</returns>
  1433. </member>
  1434. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Item(`0)">
  1435. <summary>Gets the <paramref name="TValue">TValue</paramref> associated with the specified key.</summary>
  1436. <param name="key">The type of the key.</param>
  1437. <returns>The value associated with the specified key. If no results are found, the operation throws an exception.</returns>
  1438. </member>
  1439. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.KeyComparer">
  1440. <summary>Gets the key comparer for the immutable dictionary.</summary>
  1441. <returns>The key comparer.</returns>
  1442. </member>
  1443. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Keys">
  1444. <summary>Gets the keys in the immutable dictionary.</summary>
  1445. <returns>The keys in the immutable dictionary.</returns>
  1446. </member>
  1447. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.Remove(`0)">
  1448. <summary>Removes the element with the specified key from the immutable dictionary.</summary>
  1449. <param name="key">The key of the element to remove.</param>
  1450. <returns>A new immutable dictionary with the specified element removed; or this instance if the specified key cannot be found in the dictionary.</returns>
  1451. </member>
  1452. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  1453. <summary>Removes the elements with the specified keys from the immutable dictionary.</summary>
  1454. <param name="keys">The keys of the elements to remove.</param>
  1455. <returns>A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.</returns>
  1456. </member>
  1457. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.SetItem(`0,`1)">
  1458. <summary>Sets the specified key and value in the immutable dictionary, possibly overwriting an existing value for the key.</summary>
  1459. <param name="key">The key of the entry to add.</param>
  1460. <param name="value">The key value to set.</param>
  1461. <returns>A new immutable dictionary that contains the specified key/value pair.</returns>
  1462. </member>
  1463. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  1464. <summary>Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.</summary>
  1465. <param name="items">The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.</param>
  1466. <returns>A new immutable dictionary that contains the specified key/value pairs.</returns>
  1467. </member>
  1468. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.ToBuilder">
  1469. <summary>Creates an immutable dictionary with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.</summary>
  1470. <returns>A collection with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.</returns>
  1471. </member>
  1472. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.TryGetKey(`0,`0@)">
  1473. <summary>Determines whether this dictionary contains a specified key.</summary>
  1474. <param name="equalKey">The key to search for.</param>
  1475. <param name="actualKey">The matching key located in the dictionary if found, or equalkey if no match is found.</param>
  1476. <returns>true if a match for <paramref name="equalKey">equalKey</paramref> is found; otherwise, false.</returns>
  1477. </member>
  1478. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.TryGetValue(`0,`1@)">
  1479. <summary>Gets the value associated with the specified key.</summary>
  1480. <param name="key">The key whose value will be retrieved.</param>
  1481. <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
  1482. <returns>true if the object that implements the dictionary contains an element with the specified key; otherwise, false.</returns>
  1483. <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
  1484. </member>
  1485. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.ValueComparer">
  1486. <summary>Gets the value comparer used to determine whether values are equal.</summary>
  1487. <returns>The value comparer used to determine whether values are equal.</returns>
  1488. </member>
  1489. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.Values">
  1490. <summary>Gets the values in the immutable dictionary.</summary>
  1491. <returns>The values in the immutable dictionary.</returns>
  1492. </member>
  1493. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0})">
  1494. <summary>Gets an instance of the immutable dictionary that uses the specified key comparer.</summary>
  1495. <param name="keyComparer">The key comparer to use.</param>
  1496. <returns>An instance of the immutable dictionary that uses the given comparer.</returns>
  1497. </member>
  1498. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0},System.Collections.Generic.IEqualityComparer{`1})">
  1499. <summary>Gets an instance of the immutable dictionary that uses the specified key and value comparers.</summary>
  1500. <param name="keyComparer">The key comparer to use.</param>
  1501. <param name="valueComparer">The value comparer to use.</param>
  1502. <returns>An instance of the immutable dictionary that uses the given comparers.</returns>
  1503. </member>
  1504. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1505. <param name="item"></param>
  1506. </member>
  1507. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Clear">
  1508. </member>
  1509. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1510. <param name="array"></param>
  1511. <param name="arrayIndex"></param>
  1512. </member>
  1513. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
  1514. <returns></returns>
  1515. </member>
  1516. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1517. <param name="item"></param>
  1518. <returns></returns>
  1519. </member>
  1520. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Add(`0,`1)">
  1521. <param name="key"></param>
  1522. <param name="value"></param>
  1523. </member>
  1524. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Item(`0)">
  1525. <param name="key"></param>
  1526. <returns></returns>
  1527. </member>
  1528. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  1529. <returns></returns>
  1530. </member>
  1531. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Remove(`0)">
  1532. <param name="key"></param>
  1533. <returns></returns>
  1534. </member>
  1535. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  1536. <returns></returns>
  1537. </member>
  1538. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
  1539. <returns></returns>
  1540. </member>
  1541. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1542. <summary>Copies the elements of the dictionary to an array, starting at a particular array index.</summary>
  1543. <param name="array">The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.</param>
  1544. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  1545. </member>
  1546. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#ICollection#IsSynchronized">
  1547. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  1548. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  1549. </member>
  1550. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#ICollection#SyncRoot">
  1551. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  1552. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  1553. </member>
  1554. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  1555. <summary>Adds an element with the provided key and value to the immutable dictionary object.</summary>
  1556. <param name="key">The object to use as the key of the element to add.</param>
  1557. <param name="value">The object to use as the value of the element to add.</param>
  1558. </member>
  1559. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Clear">
  1560. <summary>Clears this instance.</summary>
  1561. <exception cref="T:System.NotSupportedException">The dictionary object is read-only.</exception>
  1562. </member>
  1563. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
  1564. <summary>Determines whether the immutable dictionary object contains an element with the specified key.</summary>
  1565. <param name="key">The key to locate in the dictionary object.</param>
  1566. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  1567. </member>
  1568. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#GetEnumerator">
  1569. <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the immutable dictionary object.</summary>
  1570. <returns>An enumerator object for the dictionary object.</returns>
  1571. </member>
  1572. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#IsFixedSize">
  1573. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size.</summary>
  1574. <returns>true if the <see cref="System.Collections.IDictionary"></see> object has a fixed size; otherwise, false.</returns>
  1575. </member>
  1576. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#IsReadOnly">
  1577. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  1578. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  1579. </member>
  1580. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Item(System.Object)">
  1581. <summary>Gets or sets the element with the specified key.</summary>
  1582. <param name="key">The key.</param>
  1583. <returns></returns>
  1584. </member>
  1585. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Keys">
  1586. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  1587. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the keys of the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  1588. </member>
  1589. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
  1590. <summary>Removes the element with the specified key from the immutable dictionary object.</summary>
  1591. <param name="key">The key of the element to remove.</param>
  1592. </member>
  1593. <member name="P:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IDictionary#Values">
  1594. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  1595. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the values in the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  1596. </member>
  1597. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#IEnumerable#GetEnumerator">
  1598. <summary>Returns an enumerator that iterates through a collection.</summary>
  1599. <returns>An enumerator object that can be used to iterate through the collection.</returns>
  1600. </member>
  1601. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Add(`0,`1)">
  1602. <param name="key"></param>
  1603. <param name="value"></param>
  1604. <returns></returns>
  1605. </member>
  1606. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  1607. <param name="pairs"></param>
  1608. <returns></returns>
  1609. </member>
  1610. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Clear">
  1611. <returns></returns>
  1612. </member>
  1613. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Remove(`0)">
  1614. <param name="key"></param>
  1615. <returns></returns>
  1616. </member>
  1617. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  1618. <param name="keys"></param>
  1619. <returns></returns>
  1620. </member>
  1621. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#SetItem(`0,`1)">
  1622. <param name="key"></param>
  1623. <param name="value"></param>
  1624. <returns></returns>
  1625. </member>
  1626. <member name="M:System.Collections.Immutable.ImmutableDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  1627. <param name="items"></param>
  1628. <returns></returns>
  1629. </member>
  1630. <member name="T:System.Collections.Immutable.ImmutableDictionary">
  1631. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableDictionary`2"></see> class.
  1632. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1633. </member>
  1634. <member name="M:System.Collections.Immutable.ImmutableDictionary.Contains``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1)">
  1635. <summary>Determines whether the specified immutable dictionary contains the specified key/value pair.</summary>
  1636. <param name="map">The immutable dictionary to search.</param>
  1637. <param name="key">The key to locate in the immutable dictionary.</param>
  1638. <param name="value">The value to locate on the specified key, if the key is found.</param>
  1639. <typeparam name="TKey">The type of the keys in the immutable dictionary.</typeparam>
  1640. <typeparam name="TValue">The type of the values in the immutable dictionary.</typeparam>
  1641. <returns>true if this map contains the specified key/value pair; otherwise, false.</returns>
  1642. </member>
  1643. <member name="M:System.Collections.Immutable.ImmutableDictionary.Create``2">
  1644. <summary>Creates an empty immutable dictionary.</summary>
  1645. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1646. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1647. <returns>An empty immutable dictionary.</returns>
  1648. </member>
  1649. <member name="M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0})">
  1650. <summary>Creates an empty immutable dictionary that uses the specified key comparer.</summary>
  1651. <param name="keyComparer">The implementation to use to determine the equality of keys in the dictionary.</param>
  1652. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1653. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1654. <returns>An empty immutable dictionary.</returns>
  1655. </member>
  1656. <member name="M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  1657. <summary>Creates an empty immutable dictionary that uses the specified key and value comparers.</summary>
  1658. <param name="keyComparer">The implementation to use to determine the equality of keys in the dictionary.</param>
  1659. <param name="valueComparer">The implementation to use to determine the equality of values in the dictionary.</param>
  1660. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1661. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1662. <returns>An empty immutable dictionary.</returns>
  1663. </member>
  1664. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2">
  1665. <summary>Creates a new immutable dictionary builder.</summary>
  1666. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1667. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1668. <returns>The new builder.</returns>
  1669. </member>
  1670. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0})">
  1671. <summary>Creates a new immutable dictionary builder.</summary>
  1672. <param name="keyComparer">The key comparer.</param>
  1673. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1674. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1675. <returns>The new builder.</returns>
  1676. </member>
  1677. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  1678. <summary>Creates a new immutable dictionary builder.</summary>
  1679. <param name="keyComparer">The key comparer.</param>
  1680. <param name="valueComparer">The value comparer.</param>
  1681. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  1682. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  1683. <returns>The new builder.</returns>
  1684. </member>
  1685. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  1686. <summary>Creates a new immutable dictionary that contains the specified items and uses the specified key comparer.</summary>
  1687. <param name="keyComparer">The comparer implementation to use to compare keys for equality.</param>
  1688. <param name="items">The items to add to the dictionary before it’s immutable.</param>
  1689. <typeparam name="TKey">The type of keys in the dictionary.</typeparam>
  1690. <typeparam name="TValue">The type of values in the dictionary.</typeparam>
  1691. <returns>A new immutable dictionary that contains the specified items and uses the specified comparer.</returns>
  1692. </member>
  1693. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  1694. <summary>Creates a new immutable dictionary that contains the specified items and uses the specified key comparer.</summary>
  1695. <param name="keyComparer">The comparer implementation to use to compare keys for equality.</param>
  1696. <param name="valueComparer">The comparer implementation to use to compare values for equality.</param>
  1697. <param name="items">The items to add to the dictionary before it’s immutable.</param>
  1698. <typeparam name="TKey">The type of keys in the dictionary.</typeparam>
  1699. <typeparam name="TValue">The type of values in the dictionary.</typeparam>
  1700. <returns>A new immutable dictionary that contains the specified items and uses the specified comparer.</returns>
  1701. </member>
  1702. <member name="M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  1703. <summary>Creates a new immutable dictionary that contains the specified items.</summary>
  1704. <param name="items">The items used to populate the dictionary before it’s immutable.</param>
  1705. <typeparam name="TKey">The type of keys in the dictionary.</typeparam>
  1706. <typeparam name="TValue">The type of values in the dictionary.</typeparam>
  1707. <returns>A new immutable dictionary that contains the specified items.</returns>
  1708. </member>
  1709. <member name="M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0)">
  1710. <summary>Gets the value for a given key if a matching key exists in the dictionary.</summary>
  1711. <param name="dictionary">The dictionary to retrieve the value from.</param>
  1712. <param name="key">The key to search for.</param>
  1713. <typeparam name="TKey">The type of the key.</typeparam>
  1714. <typeparam name="TValue">The type of the value.</typeparam>
  1715. <returns>The value for the key, or default(TValue) if no matching key was found.</returns>
  1716. </member>
  1717. <member name="M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1)">
  1718. <summary>Gets the value for a given key if a matching key exists in the dictionary.</summary>
  1719. <param name="dictionary">The dictionary to retrieve the value from.</param>
  1720. <param name="key">The key to search for.</param>
  1721. <param name="defaultValue">The default value to return if no matching key is found in the dictionary.</param>
  1722. <typeparam name="TKey">The type of the key.</typeparam>
  1723. <typeparam name="TValue">The type of the value.</typeparam>
  1724. <returns>The value for the key, or <paramref name="defaultValue">defaultValue</paramref> if no matching key was found.</returns>
  1725. </member>
  1726. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  1727. <summary>Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents.</summary>
  1728. <param name="source">The sequence of key/value pairs to enumerate.</param>
  1729. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  1730. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  1731. <returns>An immutable dictionary that contains the key/value pairs in the specified sequence.</returns>
  1732. </member>
  1733. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})">
  1734. <summary>Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key comparer.</summary>
  1735. <param name="source">The sequence of key/value pairs to enumerate.</param>
  1736. <param name="keyComparer">The key comparer to use when building the immutable dictionary.</param>
  1737. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  1738. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  1739. <returns>An immutable dictionary that contains the key/value pairs in the specified sequence.</returns>
  1740. </member>
  1741. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  1742. <summary>Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key and value comparers.</summary>
  1743. <param name="source">The sequence of key/value pairs to enumerate.</param>
  1744. <param name="keyComparer">The key comparer to use when building the immutable dictionary.</param>
  1745. <param name="valueComparer">The value comparer to use for the immutable dictionary.</param>
  1746. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  1747. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  1748. <returns>An immutable dictionary that contains the key/value pairs in the specified sequence.</returns>
  1749. </member>
  1750. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
  1751. <summary>Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key comparer.</summary>
  1752. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  1753. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  1754. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  1755. <param name="keyComparer">The key comparer to use for the dictionary.</param>
  1756. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  1757. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  1758. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  1759. <returns>An immutable dictionary that contains the items in the specified sequence.</returns>
  1760. </member>
  1761. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})">
  1762. <summary>Enumerates and transforms a sequence, and produces an immutable dictionary of its contents.</summary>
  1763. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  1764. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  1765. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  1766. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  1767. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  1768. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  1769. <returns>An immutable dictionary that contains the items in the specified sequence.</returns>
  1770. </member>
  1771. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEqualityComparer{``2})">
  1772. <summary>Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key and value comparers.</summary>
  1773. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  1774. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  1775. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  1776. <param name="keyComparer">The key comparer to use for the dictionary.</param>
  1777. <param name="valueComparer">The value comparer to use for the dictionary.</param>
  1778. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  1779. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  1780. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  1781. <returns>An immutable dictionary that contains the items in the specified sequence.</returns>
  1782. </member>
  1783. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
  1784. <summary>Constructs an immutable dictionary from an existing collection of elements, applying a transformation function to the source keys.</summary>
  1785. <param name="source">The source collection used to generate the immutable dictionary.</param>
  1786. <param name="keySelector">The function used to transform keys for the immutable dictionary.</param>
  1787. <typeparam name="TSource">The type of element in the source collection.</typeparam>
  1788. <typeparam name="TKey">The type of key in the resulting immutable dictionary.</typeparam>
  1789. <returns>The immutable dictionary that contains elements from <paramref name="source">source</paramref>, with keys transformed by applying <paramref name="keySelector">keySelector</paramref>.</returns>
  1790. </member>
  1791. <member name="M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
  1792. <summary>Constructs an immutable dictionary based on some transformation of a sequence.</summary>
  1793. <param name="source">The source collection used to generate the immutable dictionary.</param>
  1794. <param name="keySelector">The function used to transform keys for the immutable dictionary.</param>
  1795. <param name="keyComparer">The key comparer to use for the dictionary.</param>
  1796. <typeparam name="TSource">The type of element in the source collection.</typeparam>
  1797. <typeparam name="TKey">The type of key in the resulting immutable dictionary.</typeparam>
  1798. <returns>The immutable dictionary that contains elements from <paramref name="source">source</paramref>, with keys transformed by applying <paramref name="keySelector">keySelector</paramref>.</returns>
  1799. </member>
  1800. <member name="T:System.Collections.Immutable.ImmutableHashSet`1.Builder">
  1801. <summary>Represents a hash set that mutates with little or no memory allocations and that can produce or build on immutable hash set instances very efficiently.
  1802. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1803. <typeparam name="T"></typeparam>
  1804. </member>
  1805. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Add(`0)">
  1806. <summary>Adds the specified item to the immutable hash set.</summary>
  1807. <param name="item">The item to add.</param>
  1808. <returns>true if the item did not already belong to the collection; otherwise, false.</returns>
  1809. </member>
  1810. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Clear">
  1811. <summary>Removes all items from the immutable hash set.</summary>
  1812. <exception cref="T:System.NotSupportedException">The hash set is read-only.</exception>
  1813. </member>
  1814. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Contains(`0)">
  1815. <summary>Determines whether the immutable hash set contains a specific value.</summary>
  1816. <param name="item">The object to locate in the hash set.</param>
  1817. <returns>true if <paramref name="item">item</paramref> is found in the hash set ; otherwise, false.</returns>
  1818. </member>
  1819. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Builder.Count">
  1820. <summary>Gets the number of elements contained in the immutable hash set.</summary>
  1821. <returns>The number of elements contained in the immutable hash set.</returns>
  1822. </member>
  1823. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  1824. <summary>Removes all elements in the specified collection from the current hash set.</summary>
  1825. <param name="other">The collection of items to remove from the set.</param>
  1826. </member>
  1827. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.GetEnumerator">
  1828. <summary>Returns an enumerator that iterates through the immutable hash set.</summary>
  1829. <returns>An enumerator that can be used to iterate through the set.</returns>
  1830. </member>
  1831. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  1832. <summary>Modifies the current set so that it contains only elements that are also in a specified collection.</summary>
  1833. <param name="other">The collection to compare to the current set.</param>
  1834. </member>
  1835. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  1836. <summary>Determines whether the current set is a proper (strict) subset of a specified collection.</summary>
  1837. <param name="other">The collection to compare to the current set.</param>
  1838. <returns>true if the current set is a proper subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  1839. </member>
  1840. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  1841. <summary>Determines whether the current set is a proper (strict) superset of a specified collection.</summary>
  1842. <param name="other">The collection to compare to the current set.</param>
  1843. <returns>true if the current set is a proper superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  1844. </member>
  1845. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  1846. <summary>Determines whether the current set is a subset of a specified collection.</summary>
  1847. <param name="other">The collection to compare to the current set.</param>
  1848. <returns>true if the current set is a subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  1849. </member>
  1850. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  1851. <summary>Determines whether the current set is a superset of a specified collection.</summary>
  1852. <param name="other">The collection to compare to the current set.</param>
  1853. <returns>true if the current set is a superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  1854. </member>
  1855. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Builder.KeyComparer">
  1856. <summary>Gets or sets the key comparer.</summary>
  1857. <returns>The key comparer.</returns>
  1858. </member>
  1859. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  1860. <summary>Determines whether the current set overlaps with the specified collection.</summary>
  1861. <param name="other">The collection to compare to the current set.</param>
  1862. <returns>true if the current set and <paramref name="other">other</paramref> share at least one common element; otherwise, false.</returns>
  1863. </member>
  1864. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Remove(`0)">
  1865. <summary>Removes the first occurrence of a specific object from the immutable hash set.</summary>
  1866. <param name="item">The object to remove from the set.</param>
  1867. <returns>true if <paramref name="item">item</paramref> was successfully removed from the set ; otherwise, false. This method also returns false if <paramref name="item">item</paramref> is not found in the original set.</returns>
  1868. <exception cref="T:System.NotSupportedException">The set is read-only.</exception>
  1869. </member>
  1870. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  1871. <summary>Determines whether the current set and the specified collection contain the same elements.</summary>
  1872. <param name="other">The collection to compare to the current set.</param>
  1873. <returns>true if the current set is equal to <paramref name="other">other</paramref>; otherwise, false.</returns>
  1874. </member>
  1875. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  1876. <summary>Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  1877. <param name="other">The collection to compare to the current set.</param>
  1878. </member>
  1879. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ToImmutable">
  1880. <summary>Creates an immutable hash set based on the contents of this instance.</summary>
  1881. <returns>An immutable set.</returns>
  1882. </member>
  1883. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0})">
  1884. <summary>Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.</summary>
  1885. <param name="other">The collection to compare to the current set.</param>
  1886. </member>
  1887. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.System#Collections#Generic#ICollection{T}#Add(`0)">
  1888. <summary>Adds an item to the hash set.</summary>
  1889. <param name="item">The object to add to the set.</param>
  1890. <exception cref="T:System.NotSupportedException">The set is read-only.</exception>
  1891. </member>
  1892. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.System#Collections#Generic#ICollection{T}#CopyTo(`0[],System.Int32)">
  1893. <summary>Copies the elements of the hash set to an array, starting at a particular array index.</summary>
  1894. <param name="array">The one-dimensional array that is the destination of the elements copied from the hash set. The array must have zero-based indexing.</param>
  1895. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  1896. </member>
  1897. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Builder.System#Collections#Generic#ICollection{T}#IsReadOnly">
  1898. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  1899. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  1900. </member>
  1901. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  1902. <summary>Returns an enumerator that iterates through the collection.</summary>
  1903. <returns>An enumerator that can be used to iterate through the collection.</returns>
  1904. </member>
  1905. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Builder.System#Collections#IEnumerable#GetEnumerator">
  1906. <summary>Returns an enumerator that iterates through a collection.</summary>
  1907. <returns>An enumerator that can be used to iterate through the collection.</returns>
  1908. </member>
  1909. <member name="T:System.Collections.Immutable.ImmutableHashSet`1.Enumerator">
  1910. <summary>Enumerates the contents of the immutable hash set without allocating any memory.
  1911. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1912. <typeparam name="T"></typeparam>
  1913. </member>
  1914. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Current">
  1915. <summary>Gets the element at the current position of the enumerator.</summary>
  1916. <returns>The element at the current position of the enumerator.</returns>
  1917. </member>
  1918. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Dispose">
  1919. <summary>Releases the resources used by the current instance of the <see cref="T:System.Collections.Immutable.ImmutableHashSet`1.Enumerator"></see> class.</summary>
  1920. </member>
  1921. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.MoveNext">
  1922. <summary>Advances the enumerator to the next element of the immutable hash set.</summary>
  1923. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the hash set.</returns>
  1924. <exception cref="T:System.InvalidOperationException">The hash set was modified after the enumerator was created.</exception>
  1925. </member>
  1926. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Reset">
  1927. <summary>Sets the enumerator to its initial position, which is before the first element in the hash set.</summary>
  1928. <exception cref="T:System.InvalidOperationException">The hash set was modified after the enumerator was created.</exception>
  1929. </member>
  1930. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.System#Collections#IEnumerator#Current">
  1931. <summary>Gets the current element.</summary>
  1932. <returns></returns>
  1933. </member>
  1934. <member name="T:System.Collections.Immutable.ImmutableHashSet`1">
  1935. <summary>Represents an immutable, unordered hash set.
  1936. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  1937. <typeparam name="T">The type of elements in the hash set.</typeparam>
  1938. </member>
  1939. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Add(`0)">
  1940. <summary>Adds the specified element to the hash set.</summary>
  1941. <param name="item">The element to add to the set.</param>
  1942. <returns>A hash set that contains the added value and any values previously held by the <see cref="System.Collections.Immutable.ImmutableHashSet`1"></see> object.</returns>
  1943. </member>
  1944. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Clear">
  1945. <summary>Retrieves an empty immutable hash set that has the same sorting and ordering semantics as this instance.</summary>
  1946. <returns>An empty hash set that has the same sorting and ordering semantics as this instance.</returns>
  1947. </member>
  1948. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Contains(`0)">
  1949. <summary>Determines whether this immutable hash set contains the specified element.</summary>
  1950. <param name="item">The object to locate in the immutable hash set.</param>
  1951. <returns>true if <paramref name="item">item</paramref> is found in the <see cref="System.Collections.Immutable.ImmutableHashSet`1"></see>; otherwise, false.</returns>
  1952. </member>
  1953. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.Count">
  1954. <summary>Gets the number of elements in the immutable hash set.</summary>
  1955. <returns>The number of elements in the hash set.</returns>
  1956. </member>
  1957. <member name="F:System.Collections.Immutable.ImmutableHashSet`1.Empty">
  1958. <summary>Gets an immutable hash set for this type that uses the default <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see>.</summary>
  1959. <returns></returns>
  1960. </member>
  1961. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Except(System.Collections.Generic.IEnumerable{`0})">
  1962. <summary>Removes the elements in the specified collection from the current immutable hash set.</summary>
  1963. <param name="other">The collection of items to remove from this set.</param>
  1964. <returns>A new set with the items removed; or the original set if none of the items were in the set.</returns>
  1965. </member>
  1966. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.GetEnumerator">
  1967. <summary>Returns an enumerator that iterates through the collection.</summary>
  1968. <returns>An enumerator that can be used to iterate through the collection.</returns>
  1969. </member>
  1970. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Intersect(System.Collections.Generic.IEnumerable{`0})">
  1971. <summary>Creates an immutable hash set that contains elements that exist in both this set and the specified set.</summary>
  1972. <param name="other">The collection to compare to the current set.</param>
  1973. <returns>A new immutable set that contains any elements that exist in both sets.</returns>
  1974. </member>
  1975. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.IsEmpty">
  1976. <summary>Gets a value that indicates whether the current immutable hash set is empty.</summary>
  1977. <returns>true if this instance is empty; otherwise, false.</returns>
  1978. </member>
  1979. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  1980. <summary>Determines whether the current immutable hash set is a proper (strict) subset of a specified collection.</summary>
  1981. <param name="other">The collection to compare to the current set.</param>
  1982. <returns>true if the current set is a proper subset of the specified collection; otherwise, false.</returns>
  1983. </member>
  1984. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  1985. <summary>Determines whether the current immutable hash set is a proper (strict) superset of a specified collection.</summary>
  1986. <param name="other">The collection to compare to the current set.</param>
  1987. <returns>true if the current set is a proper superset of the specified collection; otherwise, false.</returns>
  1988. </member>
  1989. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  1990. <summary>Determines whether the current immutable hash set is a subset of a specified collection.</summary>
  1991. <param name="other">The collection to compare to the current set.</param>
  1992. <returns>true if the current set is a subset of the specified collection; otherwise, false.</returns>
  1993. </member>
  1994. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  1995. <summary>Determines whether the current immutable hash set is a superset of a specified collection.</summary>
  1996. <param name="other">The collection to compare to the current set.</param>
  1997. <returns>true if the current set is a superset of the specified collection; otherwise, false.</returns>
  1998. </member>
  1999. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.KeyComparer">
  2000. <summary>Gets the object that is used to obtain hash codes for the keys and to check the equality of values in the immutable hash set.</summary>
  2001. <returns>The comparer used to obtain hash codes for the keys and check equality.</returns>
  2002. </member>
  2003. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  2004. <summary>Determines whether the current immutable hash set overlaps with the specified collection.</summary>
  2005. <param name="other">The collection to compare to the current set.</param>
  2006. <returns>true if the current set and the specified collection share at least one common element; otherwise, false.</returns>
  2007. </member>
  2008. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Remove(`0)">
  2009. <summary>Removes the specified element from this immutable hash set.</summary>
  2010. <param name="item">The element to remove.</param>
  2011. <returns>A new set with the specified element removed, or the current set if the element cannot be found in the set.</returns>
  2012. </member>
  2013. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  2014. <summary>Determines whether the current immutable hash set and the specified collection contain the same elements.</summary>
  2015. <param name="other">The collection to compare to the current set.</param>
  2016. <returns>true if the sets are equal; otherwise, false.</returns>
  2017. </member>
  2018. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
  2019. <summary>Creates an immutable hash set that contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  2020. <param name="other">The collection to compare to the current set.</param>
  2021. <returns>A new set that contains the elements that are present only in the current set or in the specified collection, but not both.</returns>
  2022. </member>
  2023. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.ToBuilder">
  2024. <summary>Creates an immutable hash set that has the same contents as this set and can be efficiently mutated across multiple operations by using standard mutable interfaces.</summary>
  2025. <returns>A set with the same contents as this set that can be efficiently mutated across multiple operations by using standard mutable interfaces.</returns>
  2026. </member>
  2027. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.TryGetValue(`0,`0@)">
  2028. <summary>Searches the set for a given value and returns the equal value it finds, if any.</summary>
  2029. <param name="equalValue">The value to search for.</param>
  2030. <param name="actualValue">The value from the set that the search found, or the original value if the search yielded no match.</param>
  2031. <returns>A value indicating whether the search was successful.</returns>
  2032. </member>
  2033. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.Union(System.Collections.Generic.IEnumerable{`0})">
  2034. <summary>Creates a new immutable hash set that contains all elements that are present in either the current set or in the specified collection.</summary>
  2035. <param name="other">The collection to add elements from.</param>
  2036. <returns>A new immutable hash set with the items added; or the original set if all the items were already in the set.</returns>
  2037. </member>
  2038. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.WithComparer(System.Collections.Generic.IEqualityComparer{`0})">
  2039. <summary>Gets an instance of the immutable hash set that uses the specified equality comparer for its search methods.</summary>
  2040. <param name="equalityComparer">The equality comparer to use.</param>
  2041. <returns>An instance of this immutable hash set that uses the given comparer.</returns>
  2042. </member>
  2043. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  2044. <summary>Adds an item to the set.</summary>
  2045. <param name="item">The object to add to the set.</param>
  2046. <exception cref="T:System.NotSupportedException">The set is read-only.</exception>
  2047. </member>
  2048. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ICollection{T}#Clear">
  2049. <summary>Removes all items from this set.</summary>
  2050. <exception cref="T:System.NotSupportedException">The set is read-only.</exception>
  2051. </member>
  2052. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ICollection{T}#CopyTo(`0[],System.Int32)">
  2053. <summary>Copies the elements of the set to an array, starting at a particular index.</summary>
  2054. <param name="array">The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.</param>
  2055. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2056. </member>
  2057. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2058. <summary>See the <see cref="T:System.Collections.Generic.ICollection`1"></see> interface.</summary>
  2059. <returns></returns>
  2060. </member>
  2061. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
  2062. <summary>Removes the first occurrence of a specific object from the set.</summary>
  2063. <param name="item">The object to remove from the set.</param>
  2064. <returns>true if the element is successfully removed; otherwise, false.</returns>
  2065. </member>
  2066. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2067. <summary>Returns an enumerator that iterates through the collection.</summary>
  2068. <returns>An enumerator that iterates through the collection.</returns>
  2069. </member>
  2070. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ISet{T}#Add(`0)">
  2071. <summary>Adds an element to the current set and returns a value that indicates whether the element was successfully added.</summary>
  2072. <param name="item">The element to add to the collection.</param>
  2073. <returns>true if the element is added to the set; false if the element is already in the set.</returns>
  2074. </member>
  2075. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ISet{T}#ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  2076. <summary>Removes all elements in the specified collection from the current set.</summary>
  2077. <param name="other">The collection of items to remove.</param>
  2078. </member>
  2079. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ISet{T}#IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  2080. <summary>Modifies the current set so that it contains only elements that are also in a specified collection.</summary>
  2081. <param name="other">The collection to compare to the current collection.</param>
  2082. </member>
  2083. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ISet{T}#SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  2084. <summary>Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  2085. <param name="other">The collection to compare to the current set.</param>
  2086. </member>
  2087. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Generic#ISet{T}#UnionWith(System.Collections.Generic.IEnumerable{`0})">
  2088. <summary>Modifies the current set so that it contains all elements that are present in either the current set or in the specified collection.</summary>
  2089. <param name="other">The collection to compare to the current set.</param>
  2090. </member>
  2091. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2092. <summary>Copies the elements of the set to an array, starting at a particular index.</summary>
  2093. <param name="array">The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.</param>
  2094. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2095. </member>
  2096. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#ICollection#IsSynchronized">
  2097. <summary>See the <see cref="T:System.Collections.ICollection"></see> interface.</summary>
  2098. <returns></returns>
  2099. </member>
  2100. <member name="P:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#ICollection#SyncRoot">
  2101. <summary>See <see cref="T:System.Collections.ICollection"></see>.</summary>
  2102. <returns></returns>
  2103. </member>
  2104. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#IEnumerable#GetEnumerator">
  2105. <summary>Returns an enumerator that iterates through a set.</summary>
  2106. <returns>An enumerator that can be used to iterate through the set.</returns>
  2107. </member>
  2108. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Add(`0)">
  2109. <summary>Adds the specified element to this immutable set.</summary>
  2110. <param name="item">The element to add.</param>
  2111. <returns>A new set with the element added, or this set if the element is already in the set.</returns>
  2112. </member>
  2113. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Clear">
  2114. <summary>Retrieves an empty set that has the same sorting and ordering semantics as this instance.</summary>
  2115. <returns>An empty set that has the same sorting or ordering semantics as this instance.</returns>
  2116. </member>
  2117. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Except(System.Collections.Generic.IEnumerable{`0})">
  2118. <summary>Removes the elements in the specified collection from the current set.</summary>
  2119. <param name="other">The collection of items to remove from this set.</param>
  2120. <returns>A new set with the items removed; or the original set if none of the items were in the set.</returns>
  2121. </member>
  2122. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Intersect(System.Collections.Generic.IEnumerable{`0})">
  2123. <summary>Creates an immutable set that contains elements that exist in both this set and the specified set.</summary>
  2124. <param name="other">The collection to compare to the current set.</param>
  2125. <returns>A new immutable set that contains any elements that exist in both sets.</returns>
  2126. </member>
  2127. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Remove(`0)">
  2128. <summary>Removes the specified element from this immutable set.</summary>
  2129. <param name="item">The element to remove.</param>
  2130. <returns>A new set with the specified element removed, or the current set if the element cannot be found in the set.</returns>
  2131. </member>
  2132. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
  2133. <summary>Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  2134. <param name="other">The collection to compare to the current set.</param>
  2135. <returns>A new set that contains the elements that are present only in the current set or in the specified collection, but not both.</returns>
  2136. </member>
  2137. <member name="M:System.Collections.Immutable.ImmutableHashSet`1.System#Collections#Immutable#IImmutableSet{T}#Union(System.Collections.Generic.IEnumerable{`0})">
  2138. <summary>Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.</summary>
  2139. <param name="other">The collection to add elements from.</param>
  2140. <returns>A new immutable set with the items added; or the original set if all the items were already in the set.</returns>
  2141. </member>
  2142. <member name="T:System.Collections.Immutable.ImmutableHashSet">
  2143. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableHashSet`1"></see> class.
  2144. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  2145. </member>
  2146. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1">
  2147. <summary>Creates an empty immutable hash set.</summary>
  2148. <typeparam name="T">The type of items to be stored in the immutable hash set.</typeparam>
  2149. <returns>An empty immutable hash set.</returns>
  2150. </member>
  2151. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0})">
  2152. <summary>Creates an empty immutable hash set that uses the specified equality comparer.</summary>
  2153. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2154. <typeparam name="T">The type of items in the immutable hash set.</typeparam>
  2155. <returns>An empty immutable hash set.</returns>
  2156. </member>
  2157. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0)">
  2158. <summary>Creates a new immutable hash set that contains the specified item.</summary>
  2159. <param name="item">The item to prepopulate the hash set with.</param>
  2160. <typeparam name="T">The type of items in the immutable hash set.</typeparam>
  2161. <returns>A new immutable hash set that contains the specified item.</returns>
  2162. </member>
  2163. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0[])">
  2164. <summary>Creates a new immutable hash set that contains the specified array of items.</summary>
  2165. <param name="items">An array that contains the items to prepopulate the hash set with.</param>
  2166. <typeparam name="T">The type of items in the immutable hash set.</typeparam>
  2167. <returns>A new immutable hash set that contains the specified items.</returns>
  2168. </member>
  2169. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0)">
  2170. <summary>Creates a new immutable hash set that contains the specified item and uses the specified equality comparer for the set type.</summary>
  2171. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2172. <param name="item">The item to prepopulate the hash set with.</param>
  2173. <typeparam name="T">The type of items in the immutable hash set.</typeparam>
  2174. <returns>A new immutable hash set that contains the specified item.</returns>
  2175. </member>
  2176. <member name="M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0[])">
  2177. <summary>Creates a new immutable hash set that contains the items in the specified collection and uses the specified equality comparer for the set type.</summary>
  2178. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2179. <param name="items">An array that contains the items to prepopulate the hash set with.</param>
  2180. <typeparam name="T">The type of items stored in the immutable hash set.</typeparam>
  2181. <returns>A new immutable hash set that contains the specified items.</returns>
  2182. </member>
  2183. <member name="M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1">
  2184. <summary>Creates a new immutable hash set builder.</summary>
  2185. <typeparam name="T">The type of items stored by the collection.</typeparam>
  2186. <returns>The immutable hash set builder.</returns>
  2187. </member>
  2188. <member name="M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1(System.Collections.Generic.IEqualityComparer{``0})">
  2189. <summary>Creates a new immutable hash set builder.</summary>
  2190. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2191. <typeparam name="T">The type of items stored by the collection.</typeparam>
  2192. <returns>The new immutable hash set builder.</returns>
  2193. </member>
  2194. <member name="M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  2195. <summary>Creates a new immutable hash set prefilled with the specified items.</summary>
  2196. <param name="items">The items to add to the hash set.</param>
  2197. <typeparam name="T">The type of items stored by the collection.</typeparam>
  2198. <returns>The new immutable hash set that contains the specified items.</returns>
  2199. </member>
  2200. <member name="M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{``0})">
  2201. <summary>Creates a new immutable hash set that contains the specified items and uses the specified equality comparer for the set type.</summary>
  2202. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2203. <param name="items">The items add to the collection before immutability is applied.</param>
  2204. <typeparam name="T">The type of items stored in the collection.</typeparam>
  2205. <returns>The new immutable hash set.</returns>
  2206. </member>
  2207. <member name="M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0})">
  2208. <summary>Enumerates a sequence and produces an immutable hash set of its contents.</summary>
  2209. <param name="source">The sequence to enumerate.</param>
  2210. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  2211. <returns>An immutable hash set that contains the items in the specified sequence.</returns>
  2212. </member>
  2213. <member name="M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
  2214. <summary>Enumerates a sequence, produces an immutable hash set of its contents, and uses the specified equality comparer for the set type.</summary>
  2215. <param name="source">The sequence to enumerate.</param>
  2216. <param name="equalityComparer">The object to use for comparing objects in the set for equality.</param>
  2217. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  2218. <returns>An immutable hash set that contains the items in the specified sequence and uses the specified equality comparer.</returns>
  2219. </member>
  2220. <member name="T:System.Collections.Immutable.ImmutableInterlocked">
  2221. <summary>Contains interlocked exchange mechanisms for immutable collections.
  2222. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  2223. </member>
  2224. <member name="M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1},System.Func{``0,``1,``1})">
  2225. <summary>Obtains the value from a dictionary after having added it or updated an existing entry.</summary>
  2226. <param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
  2227. <param name="key">The key for the value to add or update.</param>
  2228. <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>
  2229. <param name="updateValueFactory">The function that receives the key and prior value and returns the new value with which to update the dictionary.</param>
  2230. <typeparam name="TKey"></typeparam>
  2231. <typeparam name="TValue"></typeparam>
  2232. <returns>The added or updated value.</returns>
  2233. </member>
  2234. <member name="M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,System.Func{``0,``1,``1})">
  2235. <summary>Obtains the value from a dictionary after having added it or updated an existing entry.</summary>
  2236. <param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
  2237. <param name="key">The key for the value to add or update.</param>
  2238. <param name="addValue">The value to use if no previous value exists.</param>
  2239. <param name="updateValueFactory">The function that receives the key and prior value and returns the new value with which to update the dictionary.</param>
  2240. <typeparam name="TKey"></typeparam>
  2241. <typeparam name="TValue"></typeparam>
  2242. <returns>The added or updated value.</returns>
  2243. </member>
  2244. <member name="M:System.Collections.Immutable.ImmutableInterlocked.Enqueue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0)">
  2245. <summary>Atomically enqueues an element to the end of a queue.</summary>
  2246. <param name="location">The variable or field to atomically update.</param>
  2247. <param name="value">The value to enqueue.</param>
  2248. <typeparam name="T">The type of items contained in the collection</typeparam>
  2249. </member>
  2250. <member name="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``3(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``2,``1},``2)">
  2251. <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>
  2252. <param name="location">The variable or field to update if the specified is not in the dictionary.</param>
  2253. <param name="key">The key for the value to retrieve or add.</param>
  2254. <param name="valueFactory">The function to execute to obtain the value to insert into the dictionary if the key is not found.</param>
  2255. <param name="factoryArgument">The argument to pass to the value factory.</param>
  2256. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2257. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2258. <typeparam name="TArg"></typeparam>
  2259. <returns>The value at the specified key or <paramref name="valueFactory">valueFactory</paramref> if the key was not present.</returns>
  2260. </member>
  2261. <member name="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1})">
  2262. <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>
  2263. <param name="location">The variable or field to atomically update if the specified is not in the dictionary.</param>
  2264. <param name="key">The key for the value to retrieve or add.</param>
  2265. <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>
  2266. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2267. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2268. <returns>The value at the specified key or <paramref name="valueFactory">valueFactory</paramref> if the key was not present.</returns>
  2269. </member>
  2270. <member name="M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1)">
  2271. <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>
  2272. <param name="location">The variable or field to atomically update if the specified key is not in the dictionary.</param>
  2273. <param name="key">The key for the value to get or add.</param>
  2274. <param name="value">The value to add to the dictionary the key is not found.</param>
  2275. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2276. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2277. <returns>The value at the specified key or <paramref name="valueFactory">valueFactory</paramref> if the key was not present.</returns>
  2278. </member>
  2279. <member name="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedCompareExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0})">
  2280. <summary>Compares two immutable arrays for equality and, if they are equal, replaces one of the arrays.</summary>
  2281. <param name="location">The destination, whose value is compared with comparand and possibly replaced.</param>
  2282. <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
  2283. <param name="comparand">The value that is compared to the value at location.</param>
  2284. <typeparam name="T">The type of element stored by the array.</typeparam>
  2285. <returns>The original value in <paramref name="location">location</paramref>.</returns>
  2286. </member>
  2287. <member name="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0})">
  2288. <summary>Sets an array to the specified array and returns a reference to the original array, as an atomic operation.</summary>
  2289. <param name="location">The array to set to the specified value.</param>
  2290. <param name="value">The value to which the location parameter is set.</param>
  2291. <typeparam name="T">The type of element stored by the array.</typeparam>
  2292. <returns>The original value of <paramref name="location">location</paramref>.</returns>
  2293. </member>
  2294. <member name="M:System.Collections.Immutable.ImmutableInterlocked.InterlockedInitialize``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0})">
  2295. <summary>Sets an array to the specified array if the array has not been initialized.</summary>
  2296. <param name="location">The array to set to the specified value.</param>
  2297. <param name="value">The value to which the location parameter is set, if it’s not initialized.</param>
  2298. <typeparam name="T">The type of element stored by the array.</typeparam>
  2299. <returns>true if the array was assigned the specified value; otherwise, false.</returns>
  2300. </member>
  2301. <member name="M:System.Collections.Immutable.ImmutableInterlocked.Push``1(System.Collections.Immutable.ImmutableStack{``0}@,``0)">
  2302. <summary>Pushes a new element onto the stack.</summary>
  2303. <param name="location">The stack to update.</param>
  2304. <param name="value">The value to push on the stack.</param>
  2305. <typeparam name="T">The type of items in the stack.</typeparam>
  2306. </member>
  2307. <member name="M:System.Collections.Immutable.ImmutableInterlocked.TryAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1)">
  2308. <summary>Adds the specified key and value to the dictionary if the key is not in the dictionary.</summary>
  2309. <param name="location">The dictionary to update with the specified key and value.</param>
  2310. <param name="key">The key to add, if is not already defined in the dictionary.</param>
  2311. <param name="value">The value to add.</param>
  2312. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2313. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2314. <returns>true if the key is not in the dictionary; otherwise, false.</returns>
  2315. </member>
  2316. <member name="M:System.Collections.Immutable.ImmutableInterlocked.TryDequeue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0@)">
  2317. <summary>Atomically removes and returns the specified element at the head of the queue, if the queue is not empty.</summary>
  2318. <param name="location">The variable or field to atomically update.</param>
  2319. <param name="value">Set to the value from the head of the queue, if the queue not empty.</param>
  2320. <typeparam name="T">The type of items in the queue.</typeparam>
  2321. <returns>true if the queue is not empty and the head element is removed; otherwise, false.</returns>
  2322. </member>
  2323. <member name="M:System.Collections.Immutable.ImmutableInterlocked.TryPop``1(System.Collections.Immutable.ImmutableStack{``0}@,``0@)">
  2324. <summary>Removes an element from the top of the stack, if there is an element to remove.</summary>
  2325. <param name="location">The stack to update.</param>
  2326. <param name="value">Receives the value removed from the stack, if the stack is not empty.</param>
  2327. <typeparam name="T">The type of items in the stack.</typeparam>
  2328. <returns>true if an element is removed from the stack; otherwise, false.</returns>
  2329. </member>
  2330. <member name="M:System.Collections.Immutable.ImmutableInterlocked.TryRemove``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1@)">
  2331. <summary>Removes the element with the specified key, if the key exists.</summary>
  2332. <param name="location">The dictionary to update.</param>
  2333. <param name="key">The key to remove.</param>
  2334. <param name="value">Receives the value of the removed item, if the dictionary is not empty.</param>
  2335. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2336. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2337. <returns>true if the key was found and removed; otherwise, false.</returns>
  2338. </member>
  2339. <member name="M:System.Collections.Immutable.ImmutableInterlocked.TryUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,``1)">
  2340. <summary>Sets the specified key to the specified value if the specified key already is set to a specific value.</summary>
  2341. <param name="location">The dictionary to update.</param>
  2342. <param name="key">The key to update.</param>
  2343. <param name="newValue">The new value to set.</param>
  2344. <param name="comparisonValue">The current value for key in order for the update to succeed.</param>
  2345. <typeparam name="TKey">The type of the keys contained in the collection.</typeparam>
  2346. <typeparam name="TValue">The type of the values contained in the collection.</typeparam>
  2347. <returns>true if <paramref name="key">key</paramref> and <paramref name="comparisonValue">comparisonValue</paramref> are present in the dictionary and comparison was updated to <paramref name="newValue">newValue</paramref>; otherwise, false.</returns>
  2348. </member>
  2349. <member name="M:System.Collections.Immutable.ImmutableInterlocked.Update``2(``0@,System.Func{``0,``1,``0},``1)">
  2350. <summary>Mutates a value 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>
  2351. <param name="location">The variable or field to be changed, which may be accessed by multiple threads.</param>
  2352. <param name="transformer">A function that mutates the value. This function should be side-effect free, as it may run multiple times when races occur with other threads.</param>
  2353. <param name="transformerArgument">The argument to pass to transformer.</param>
  2354. <typeparam name="T">The type of data.</typeparam>
  2355. <typeparam name="TArg">The type of argument passed to the transformer.</typeparam>
  2356. <returns>true if the location&amp;#39;s value is changed by applying the result of the <paramref name="transformer">transformer</paramref> function; false if the location&amp;#39;s value remained the same because the last invocation of <paramref name="transformer">transformer</paramref> returned the existing value.</returns>
  2357. </member>
  2358. <member name="M:System.Collections.Immutable.ImmutableInterlocked.Update``1(``0@,System.Func{``0,``0})">
  2359. <summary>Mutates a value 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>
  2360. <param name="location">The variable or field to be changed, which may be accessed by multiple threads.</param>
  2361. <param name="transformer">A function that mutates the value. This function should be side-effect free, as it may run multiple times when races occur with other threads.</param>
  2362. <typeparam name="T">The type of data.</typeparam>
  2363. <returns>true if the location&amp;#39;s value is changed by applying the result of the <paramref name="transformer">transformer</paramref> function; false if the location&amp;#39;s value remained the same because the last invocation of <paramref name="transformer">transformer</paramref> returned the existing value.</returns>
  2364. </member>
  2365. <member name="T:System.Collections.Immutable.ImmutableList`1.Builder">
  2366. <summary>Represents a list that mutates with little or no memory allocations and that can produce or build on immutable list instances very efficiently.
  2367. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  2368. <typeparam name="T"></typeparam>
  2369. </member>
  2370. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Add(`0)">
  2371. <summary>Adds an item to the immutable list.</summary>
  2372. <param name="item">The item to add to the list.</param>
  2373. </member>
  2374. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0})">
  2375. <summary>Adds a series of elements to the end of this list.</summary>
  2376. <param name="items">The elements to add to the end of the list.</param>
  2377. </member>
  2378. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0)">
  2379. <summary>Searches the entire <see cref="T:System.Collections.Immutable.ImmutableList`1.Builder"></see> for an element using the default comparer and returns the zero-based index of the element.</summary>
  2380. <param name="item">The object to locate. The value can be null for reference types.</param>
  2381. <returns>The zero-based index of item in the <see cref="System.Collections.Immutable.ImmutableList`1.Builder"></see>, if 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">item</paramref>.</returns>
  2382. </member>
  2383. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
  2384. <summary>Searches the entire <see cref="T:System.Collections.Immutable.ImmutableList`1.Builder"></see> for an element using the specified comparer and returns the zero-based index of the element.</summary>
  2385. <param name="item">The object to locate. This value can be null for reference types.</param>
  2386. <param name="comparer">The implementation to use when comparing elements, or null for the default comparer.</param>
  2387. <returns>The zero-based index of item in the <see cref="System.Collections.Immutable.ImmutableList`1.Builder"></see>, if 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">item</paramref>.</returns>
  2388. </member>
  2389. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
  2390. <summary>Searches the specified range of the <see cref="T:System.Collections.Immutable.ImmutableList`1.Builder"></see> for an element using the specified comparer and returns the zero-based index of the element.</summary>
  2391. <param name="index">The zero-based starting index of the range to search.</param>
  2392. <param name="count">The length of the range to search.</param>
  2393. <param name="item">The object to locate. This value can be null for reference types.</param>
  2394. <param name="comparer">The implementation to use when comparing elements, or null for the default comparer.</param>
  2395. <returns>The zero-based index of item in the <see cref="System.Collections.Immutable.ImmutableList`1.Builder"></see>, if 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">item</paramref>.</returns>
  2396. </member>
  2397. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Clear">
  2398. <summary>Removes all items from the immutable list.</summary>
  2399. </member>
  2400. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Contains(`0)">
  2401. <summary>Determines whether the immutable list contains a specific value.</summary>
  2402. <param name="item">The object to locate in the list.</param>
  2403. <returns>true if item is found in the list; otherwise, false.</returns>
  2404. </member>
  2405. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.ConvertAll``1(System.Func{`0,``0})">
  2406. <summary>Creates a new immutable list from the list represented by this builder by using the converter function.</summary>
  2407. <param name="converter">The converter function.</param>
  2408. <typeparam name="TOutput">The type of the output of the delegate converter function.</typeparam>
  2409. <returns>A new immutable list from the list represented by this builder.</returns>
  2410. </member>
  2411. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[])">
  2412. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
  2413. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2414. </member>
  2415. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[],System.Int32)">
  2416. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
  2417. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2418. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2419. </member>
  2420. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
  2421. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
  2422. <param name="index">The zero-based index in the source immutable list at which copying begins.</param>
  2423. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2424. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2425. <param name="count">The number of elements to copy.</param>
  2426. </member>
  2427. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.Count">
  2428. <summary>Gets the number of elements in this immutable list.</summary>
  2429. <returns>The number of elements in this list.</returns>
  2430. </member>
  2431. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Exists(System.Predicate{`0})">
  2432. <summary>Determines whether the immutable list contains elements that match the conditions defined by the specified predicate.</summary>
  2433. <param name="match">The delegate that defines the conditions of the elements to search for.</param>
  2434. <returns>true if the immutable list contains one or more elements that match the conditions defined by the specified predicate; otherwise, false.</returns>
  2435. </member>
  2436. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Find(System.Predicate{`0})">
  2437. <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire immutable list.</summary>
  2438. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2439. <returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
  2440. </member>
  2441. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindAll(System.Predicate{`0})">
  2442. <summary>Retrieves all the elements that match the conditions defined by the specified predicate.</summary>
  2443. <param name="match">The delegate that defines the conditions of the elements to search for.</param>
  2444. <returns>An immutable list containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty immutable list.</returns>
  2445. </member>
  2446. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Predicate{`0})">
  2447. <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 immutable list.</summary>
  2448. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2449. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2450. </member>
  2451. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Predicate{`0})">
  2452. <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 immutable list that extends from the specified index to the last element.</summary>
  2453. <param name="startIndex">The zero-based starting index of the search.</param>
  2454. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2455. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2456. </member>
  2457. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
  2458. <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 immutable list that starts at the specified index and contains the specified number of elements.</summary>
  2459. <param name="startIndex">The zero-based starting index of the search.</param>
  2460. <param name="count">The number of elements in the section to search.</param>
  2461. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2462. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2463. </member>
  2464. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindLast(System.Predicate{`0})">
  2465. <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire immutable list.</summary>
  2466. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2467. <returns>The last element that matches the conditions defined by the specified predicate, found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
  2468. </member>
  2469. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Predicate{`0})">
  2470. <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 immutable list.</summary>
  2471. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2472. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2473. </member>
  2474. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Predicate{`0})">
  2475. <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 immutable list that extends from the first element to the specified index.</summary>
  2476. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2477. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2478. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2479. </member>
  2480. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
  2481. <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 immutable list that contains the specified number of elements and ends at the specified index.</summary>
  2482. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2483. <param name="count">The number of elements in the section to search.</param>
  2484. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2485. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
  2486. </member>
  2487. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.ForEach(System.Action{`0})">
  2488. <summary>Performs the specified action on each element of the list.</summary>
  2489. <param name="action">The delegate to perform on each element of the list.</param>
  2490. </member>
  2491. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.GetEnumerator">
  2492. <summary>Returns an enumerator that iterates through the collection.</summary>
  2493. <returns>An enumerator that can be used to iterate through the list.</returns>
  2494. </member>
  2495. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.GetRange(System.Int32,System.Int32)">
  2496. <summary>Creates a shallow copy of a range of elements in the source immutable list.</summary>
  2497. <param name="index">The zero-based index at which the range starts.</param>
  2498. <param name="count">The number of elements in the range.</param>
  2499. <returns>A shallow copy of a range of elements in the source immutable list.</returns>
  2500. </member>
  2501. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0)">
  2502. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list.</summary>
  2503. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2504. <returns>The zero-based index of the first occurrence of <paramref name="item">item</paramref> within the range of elements in the immutable list, if found; otherwise, –1.</returns>
  2505. </member>
  2506. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32)">
  2507. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.</summary>
  2508. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2509. <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  2510. <returns>The zero-based index of the first occurrence of item within the range of elements in the immutable list that extends from <paramref name="index">index</paramref> to the last element, if found; otherwise, –1.</returns>
  2511. </member>
  2512. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32)">
  2513. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements.</summary>
  2514. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2515. <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  2516. <param name="count">The number of elements in the section to search.</param>
  2517. <returns>The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at <paramref name="index">index</paramref> and contains <paramref name="count">count</paramref> number of elements, if found; otherwise, –1.</returns>
  2518. </member>
  2519. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  2520. <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.Builder"></see> that starts at the specified index and contains the specified number of elements.</summary>
  2521. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2522. <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  2523. <param name="count">The number of elements to search.</param>
  2524. <param name="equalityComparer">The value comparer to use for comparing elements for equality.</param>
  2525. <returns>The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at <paramref name="index">index</paramref> and contains <paramref name="count">count</paramref> number of elements, if found; otherwise, –1</returns>
  2526. </member>
  2527. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Insert(System.Int32,`0)">
  2528. <summary>Inserts an item to the immutable list at the specified index.</summary>
  2529. <param name="index">The zero-based index at which item should be inserted.</param>
  2530. <param name="item">The object to insert into the immutable list.</param>
  2531. </member>
  2532. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  2533. <summary>Inserts the elements of a collection into the immutable list at the specified index.</summary>
  2534. <param name="index">The zero-based index at which the new elements should be inserted.</param>
  2535. <param name="items">The collection whose elements should be inserted into the immutable list. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.</param>
  2536. </member>
  2537. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.Item(System.Int32)">
  2538. <summary>Gets or sets the value for a given index in the list.</summary>
  2539. <param name="index">The index of the item to get or set.</param>
  2540. <returns>The value at the specified index.</returns>
  2541. </member>
  2542. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0)">
  2543. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.</summary>
  2544. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2545. <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the entire immutable list, if found; otherwise, –1.</returns>
  2546. </member>
  2547. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32)">
  2548. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.</summary>
  2549. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2550. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2551. <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the range of elements in the immutable list that extends from the first element to <paramref name="index">index</paramref>, if found; otherwise, –1.</returns>
  2552. </member>
  2553. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32)">
  2554. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.</summary>
  2555. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2556. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2557. <param name="count">The number of elements in the section to search.</param>
  2558. <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the range of elements in the immutable list that contains <paramref name="count">count</paramref> number of elements and ends at <paramref name="index">index</paramref>, if found; otherwise, –1.</returns>
  2559. </member>
  2560. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  2561. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.</summary>
  2562. <param name="item">The object to locate in the immutable list. The value can be null for reference types.</param>
  2563. <param name="startIndex">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  2564. <param name="count">The number of elements to search.</param>
  2565. <param name="equalityComparer">The value comparer to use for comparing elements for equality.</param>
  2566. <returns>The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at <paramref name="index">index</paramref> and contains <paramref name="count">count</paramref> number of elements, if found; otherwise, –1</returns>
  2567. </member>
  2568. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Remove(`0)">
  2569. <summary>Removes the first occurrence of a specific object from the immutable list.</summary>
  2570. <param name="item">The object to remove from the list.</param>
  2571. <returns>true if item was successfully removed from the list; otherwise, false. This method also returns false if item is not found in the list.</returns>
  2572. </member>
  2573. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAll(System.Predicate{`0})">
  2574. <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
  2575. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  2576. <returns>The number of elements removed from the immutable list.</returns>
  2577. </member>
  2578. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAt(System.Int32)">
  2579. <summary>Removes the item at the specified index of the immutable list.</summary>
  2580. <param name="index">The zero-based index of the item to remove from the list.</param>
  2581. </member>
  2582. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse">
  2583. <summary>Reverses the order of the elements in the entire immutable list.</summary>
  2584. </member>
  2585. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse(System.Int32,System.Int32)">
  2586. <summary>Reverses the order of the elements in the specified range of the immutable list.</summary>
  2587. <param name="index">The zero-based starting index of the range to reverse.</param>
  2588. <param name="count">The number of elements in the range to reverse.</param>
  2589. </member>
  2590. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Sort">
  2591. <summary>Sorts the elements in the entire immutable list by using the default comparer.</summary>
  2592. </member>
  2593. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Collections.Generic.IComparer{`0})">
  2594. <summary>Sorts the elements in the entire immutable list by using the specified comparer.</summary>
  2595. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer (<see cref="P:System.Collections.Generic.Comparer`1.Default"></see>).</param>
  2596. </member>
  2597. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Comparison{`0})">
  2598. <summary>Sorts the elements in the entire immutable list by using the specified comparison object.</summary>
  2599. <param name="comparison">The object to use when comparing elements.</param>
  2600. </member>
  2601. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
  2602. <summary>Sorts the elements in a range of elements in the immutable list by using the specified comparer.</summary>
  2603. <param name="index">The zero-based starting index of the range to sort.</param>
  2604. <param name="count">The length of the range to sort.</param>
  2605. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer (<see cref="P:System.Collections.Generic.Comparer`1.Default"></see>).</param>
  2606. </member>
  2607. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.ToImmutable">
  2608. <summary>Creates an immutable list based on the contents of this instance.</summary>
  2609. <returns>An immutable list.</returns>
  2610. </member>
  2611. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.TrueForAll(System.Predicate{`0})">
  2612. <summary>Determines whether every element in the immutable list matches the conditions defined by the specified predicate.</summary>
  2613. <param name="match">The delegate that defines the conditions to check against the elements.</param>
  2614. <returns>true if every element in the immutable list matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true.</returns>
  2615. </member>
  2616. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2617. <summary>Gets a value indicating whether this instance is read-only.</summary>
  2618. <returns>Always false.</returns>
  2619. </member>
  2620. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2621. <summary>Returns an enumerator that iterates through the collection.</summary>
  2622. <returns>An enumerator that can be used to iterate through the collection.</returns>
  2623. </member>
  2624. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2625. <summary>Copies the elements of the list to an array, starting at a particular array index.</summary>
  2626. <param name="array">The one-dimensional array that is the destination of the elements copied from the list. The array must have zero-based indexing.</param>
  2627. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2628. <exception cref="T:System.NotImplementedException"></exception>
  2629. </member>
  2630. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#ICollection#IsSynchronized">
  2631. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  2632. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  2633. </member>
  2634. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#ICollection#SyncRoot">
  2635. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  2636. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  2637. </member>
  2638. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IEnumerable#GetEnumerator">
  2639. <summary>Returns an enumerator that iterates through the collection.</summary>
  2640. <returns>An enumerator that can be used to iterate through the collection.</returns>
  2641. </member>
  2642. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Add(System.Object)">
  2643. <summary>Adds an item to the list.</summary>
  2644. <param name="value">The object to add to the list.</param>
  2645. <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
  2646. <exception cref="T:System.NotImplementedException"></exception>
  2647. </member>
  2648. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Clear">
  2649. <summary>Removes all items from the list.</summary>
  2650. <exception cref="T:System.NotImplementedException"></exception>
  2651. </member>
  2652. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Contains(System.Object)">
  2653. <summary>Determines whether the list contains a specific value.</summary>
  2654. <param name="value">The object to locate in the list.</param>
  2655. <returns>true if the <see cref="System.Object"></see> is found in the list; otherwise, false.</returns>
  2656. <exception cref="T:System.NotImplementedException"></exception>
  2657. </member>
  2658. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#IndexOf(System.Object)">
  2659. <summary>Determines the index of a specific item in the list.</summary>
  2660. <param name="value">The object to locate in the list.</param>
  2661. <returns>The index of <paramref name="value">value</paramref> if found in the list; otherwise, -1.</returns>
  2662. <exception cref="T:System.NotImplementedException"></exception>
  2663. </member>
  2664. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Insert(System.Int32,System.Object)">
  2665. <summary>Inserts an item to the list at the specified index.</summary>
  2666. <param name="index">The zero-based index at which value should be inserted.</param>
  2667. <param name="value">The object to insert into the list.</param>
  2668. <exception cref="T:System.NotImplementedException"></exception>
  2669. </member>
  2670. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#IsFixedSize">
  2671. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
  2672. <returns>true if the <see cref="System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
  2673. </member>
  2674. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#IsReadOnly">
  2675. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  2676. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  2677. </member>
  2678. <member name="P:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Item(System.Int32)">
  2679. <summary>Gets or sets the <see cref="T:System.Object"></see> at the specified index.</summary>
  2680. <param name="index">The index.</param>
  2681. <returns></returns>
  2682. </member>
  2683. <member name="M:System.Collections.Immutable.ImmutableList`1.Builder.System#Collections#IList#Remove(System.Object)">
  2684. <summary>Removes the first occurrence of a specific object from the list.</summary>
  2685. <param name="value">The object to remove from the list.</param>
  2686. <exception cref="T:System.NotImplementedException"></exception>
  2687. </member>
  2688. <member name="T:System.Collections.Immutable.ImmutableList`1.Enumerator">
  2689. <summary>Enumerates the contents of a binary tree.
  2690. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  2691. <typeparam name="T"></typeparam>
  2692. </member>
  2693. <member name="P:System.Collections.Immutable.ImmutableList`1.Enumerator.Current">
  2694. <summary>Gets the element at the current position of the enumerator.</summary>
  2695. <returns>The element at the current position of the enumerator.</returns>
  2696. </member>
  2697. <member name="M:System.Collections.Immutable.ImmutableList`1.Enumerator.Dispose">
  2698. <summary>Releases the resources used by the current instance of the <see cref="T:System.Collections.Immutable.ImmutableList`1.Enumerator"></see> class.</summary>
  2699. </member>
  2700. <member name="M:System.Collections.Immutable.ImmutableList`1.Enumerator.MoveNext">
  2701. <summary>Advances enumeration to the next element of the immutable list.</summary>
  2702. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the list.</returns>
  2703. </member>
  2704. <member name="M:System.Collections.Immutable.ImmutableList`1.Enumerator.Reset">
  2705. <summary>Sets the enumerator to its initial position, which is before the first element in the immutable list.</summary>
  2706. </member>
  2707. <member name="P:System.Collections.Immutable.ImmutableList`1.Enumerator.System#Collections#IEnumerator#Current">
  2708. <summary>The current element.</summary>
  2709. <returns></returns>
  2710. </member>
  2711. <member name="T:System.Collections.Immutable.ImmutableList`1">
  2712. <summary>Represents an immutable list, which is a strongly typed list of objects that can be accessed by index.
  2713. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  2714. <typeparam name="T">The type of elements in the list.</typeparam>
  2715. </member>
  2716. <member name="M:System.Collections.Immutable.ImmutableList`1.Add(`0)">
  2717. <summary>Adds the specified object to the end of the immutable list.</summary>
  2718. <param name="value">The object to add.</param>
  2719. <returns>A new immutable list with the object added, or the current list if it already contains the specified object.</returns>
  2720. </member>
  2721. <member name="M:System.Collections.Immutable.ImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  2722. <summary>Adds the elements of the specified collection to the end of the immutable list.</summary>
  2723. <param name="items">The collection whose elements will be added to the end of the list.</param>
  2724. <returns>A new immutable list with the elements added, or the current list if it already contains the specified elements.</returns>
  2725. </member>
  2726. <member name="M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0)">
  2727. <summary>Searches the entire sorted list for an element using the default comparer and returns the zero-based index of the element.</summary>
  2728. <param name="item">The object to locate. The value can be null for reference types.</param>
  2729. <returns>The zero-based index of item in the sorted List, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of <see cref="System.Collections.ICollection.Count"></see>.</returns>
  2730. <exception cref="T:System.InvalidOperationException">The default comparer cannot find a comparer implementation of the for type T.</exception>
  2731. </member>
  2732. <member name="M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
  2733. <summary>Searches the entire sorted list for an element using the specified comparer and returns the zero-based index of the element.</summary>
  2734. <param name="item">The object to locate. The value can be null for reference types.</param>
  2735. <param name="comparer">The comparer implementation to use when comparing elements or null to use the default comparer.</param>
  2736. <returns>The zero-based index of item in the sorted List, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of <see cref="System.Collections.ICollection.Count"></see>.</returns>
  2737. <exception cref="T:System.InvalidOperationException">comparer is null, and the default comparer cannot find an comparer implementation for type T.</exception>
  2738. </member>
  2739. <member name="M:System.Collections.Immutable.ImmutableList`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
  2740. <summary>Searches a range of elements in the sorted list for an element using the specified comparer and returns the zero-based index of the element.</summary>
  2741. <param name="index">The zero-based starting index of the range to search.</param>
  2742. <param name="count">The length of the range to search.</param>
  2743. <param name="item">The object to locate. The value can be null for reference types.</param>
  2744. <param name="comparer">The comparer implementation to use when comparing elements, or null to use the default comparer.</param>
  2745. <returns>The zero-based index of item in the sorted list, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of <paramref name="count">count</paramref>.</returns>
  2746. <exception cref="T:System.ArgumentOutOfRangeException">index is less than 0 or <paramref name="count">count</paramref> is less than 0.</exception>
  2747. <exception cref="T:System.ArgumentException">index and <paramref name="count">count</paramref> do not denote a valid range in the list.</exception>
  2748. <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null, and the default comparer cannot find an comparer implementation for type T.</exception>
  2749. </member>
  2750. <member name="M:System.Collections.Immutable.ImmutableList`1.Clear">
  2751. <summary>Removes all elements from the immutable list.</summary>
  2752. <returns>An empty list that retains the same sort or unordered semantics that this instance has.</returns>
  2753. </member>
  2754. <member name="M:System.Collections.Immutable.ImmutableList`1.Contains(`0)">
  2755. <summary>Determines whether this immutable list contains the specified value.</summary>
  2756. <param name="value">The value to locate.</param>
  2757. <returns>true if the list contains the specified value; otherwise, false.</returns>
  2758. </member>
  2759. <member name="M:System.Collections.Immutable.ImmutableList`1.ConvertAll``1(System.Func{`0,``0})">
  2760. <summary>Converts the elements in the current immutable list to another type, and returns a list containing the converted elements.</summary>
  2761. <param name="converter">A delegate that converts each element from one type to another type.</param>
  2762. <typeparam name="TOutput">The type of the elements of the target array.</typeparam>
  2763. <returns></returns>
  2764. </member>
  2765. <member name="M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[],System.Int32)">
  2766. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
  2767. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2768. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2769. </member>
  2770. <member name="M:System.Collections.Immutable.ImmutableList`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
  2771. <summary>Copies a range of elements from the immutable list to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
  2772. <param name="index">The zero-based index in the source immutable list at which copying begins.</param>
  2773. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2774. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  2775. <param name="count">The number of elements to copy.</param>
  2776. </member>
  2777. <member name="M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[])">
  2778. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
  2779. <param name="array">The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.</param>
  2780. </member>
  2781. <member name="P:System.Collections.Immutable.ImmutableList`1.Count">
  2782. <summary>Gets the number of elements contained in the list.</summary>
  2783. <returns>The number of elements in the list.</returns>
  2784. </member>
  2785. <member name="F:System.Collections.Immutable.ImmutableList`1.Empty">
  2786. <summary>Gets an empty set with the default sort comparer.</summary>
  2787. <returns></returns>
  2788. </member>
  2789. <member name="M:System.Collections.Immutable.ImmutableList`1.Exists(System.Predicate{`0})">
  2790. <summary>Determines whether the immutable list contains elements that match the conditions defined by the specified predicate.</summary>
  2791. <param name="match">The delegate that defines the conditions of the elements to search for.</param>
  2792. <returns>true if the immutable list contains one or more elements that match the conditions defined by the specified predicate; otherwise, false.</returns>
  2793. </member>
  2794. <member name="M:System.Collections.Immutable.ImmutableList`1.Find(System.Predicate{`0})">
  2795. <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire immutable list.</summary>
  2796. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2797. <returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
  2798. </member>
  2799. <member name="M:System.Collections.Immutable.ImmutableList`1.FindAll(System.Predicate{`0})">
  2800. <summary>Retrieves all the elements that match the conditions defined by the specified predicate.</summary>
  2801. <param name="match">The delegate that defines the conditions of the elements to search for.</param>
  2802. <returns>An immutable list that contains all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty immutable list.</returns>
  2803. </member>
  2804. <member name="M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Predicate{`0})">
  2805. <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 immutable list.</summary>
  2806. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2807. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, ?1.</returns>
  2808. </member>
  2809. <member name="M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Predicate{`0})">
  2810. <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 immutable list that extends from the specified index to the last element.</summary>
  2811. <param name="startIndex">The zero-based starting index of the search.</param>
  2812. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2813. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, ?1.</returns>
  2814. </member>
  2815. <member name="M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
  2816. <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 immutable list that starts at the specified index and contains the specified number of elements.</summary>
  2817. <param name="startIndex">The zero-based starting index of the search.</param>
  2818. <param name="count">The number of elements in the section to search.</param>
  2819. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2820. <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, ?1.</returns>
  2821. </member>
  2822. <member name="M:System.Collections.Immutable.ImmutableList`1.FindLast(System.Predicate{`0})">
  2823. <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire immutable list.</summary>
  2824. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2825. <returns>The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
  2826. </member>
  2827. <member name="M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
  2828. <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 immutable list that contains the specified number of elements and ends at the specified index.</summary>
  2829. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2830. <param name="count">The number of elements in the section to search.</param>
  2831. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2832. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, ?1.</returns>
  2833. </member>
  2834. <member name="M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Predicate{`0})">
  2835. <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 immutable list that extends from the first element to the specified index.</summary>
  2836. <param name="startIndex">The zero-based starting index of the backward search.</param>
  2837. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2838. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, ?1.</returns>
  2839. </member>
  2840. <member name="M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Predicate{`0})">
  2841. <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 immutable list.</summary>
  2842. <param name="match">The delegate that defines the conditions of the element to search for.</param>
  2843. <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, ?1.</returns>
  2844. </member>
  2845. <member name="M:System.Collections.Immutable.ImmutableList`1.ForEach(System.Action{`0})">
  2846. <summary>Performs the specified action on each element of the immutable list.</summary>
  2847. <param name="action">The delegate to perform on each element of the immutable list.</param>
  2848. </member>
  2849. <member name="M:System.Collections.Immutable.ImmutableList`1.GetEnumerator">
  2850. <summary>Returns an enumerator that iterates through the immutable list.</summary>
  2851. <returns>An enumerator that can be used to iterate through the immutable list.</returns>
  2852. </member>
  2853. <member name="M:System.Collections.Immutable.ImmutableList`1.GetRange(System.Int32,System.Int32)">
  2854. <summary>Creates a shallow copy of a range of elements in the source immutable list.</summary>
  2855. <param name="index">The zero-based index at which the range starts.</param>
  2856. <param name="count">The number of elements in the range.</param>
  2857. <returns>A shallow copy of a range of elements in the source immutable list.</returns>
  2858. </member>
  2859. <member name="M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0)">
  2860. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the entire immutable list.</summary>
  2861. <param name="value">The object to locate in the immutable list. The value can be null for reference types.</param>
  2862. <returns>The zero-based index of the first occurrence of <paramref name="value">value</paramref> within the entire immutable list, if found; otherwise, ?1.</returns>
  2863. </member>
  2864. <member name="M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  2865. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the list that starts at the specified index and contains the specified number of elements.</summary>
  2866. <param name="item">The object to locate in the list The value can be null for reference types.</param>
  2867. <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  2868. <param name="count">The number of elements in the section to search.</param>
  2869. <param name="equalityComparer">The equality comparer to use in the search.</param>
  2870. <returns>The zero-based index of the first occurrence of item within the range of elements in the list that starts at index and contains count number of elements, if found; otherwise, –1.</returns>
  2871. </member>
  2872. <member name="M:System.Collections.Immutable.ImmutableList`1.Insert(System.Int32,`0)">
  2873. <summary>Inserts the specified object into the immutable list at the specified index.</summary>
  2874. <param name="index">The zero-based index at which to insert the object.</param>
  2875. <param name="item">The object to insert.</param>
  2876. <returns>The new immutable list after the object is inserted.</returns>
  2877. </member>
  2878. <member name="M:System.Collections.Immutable.ImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  2879. <summary>Inserts the elements of a collection into the immutable list at the specified index.</summary>
  2880. <param name="index">The zero-based index at which to insert the elements.</param>
  2881. <param name="items">The collection whose elements should be inserted.</param>
  2882. <returns>The new immutable list after the elements are inserted.</returns>
  2883. </member>
  2884. <member name="P:System.Collections.Immutable.ImmutableList`1.IsEmpty">
  2885. <summary>Gets a value that indicates whether this list is empty.</summary>
  2886. <returns>true if the list is empty; otherwise, false.</returns>
  2887. </member>
  2888. <member name="P:System.Collections.Immutable.ImmutableList`1.Item(System.Int32)">
  2889. <summary>Gets the element at the specified index of the list.</summary>
  2890. <param name="index">The index of the element to retrieve.</param>
  2891. <returns>The element at the specified index.</returns>
  2892. </member>
  2893. <member name="M:System.Collections.Immutable.ImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  2894. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the list that contains the specified number of elements and ends at the specified index.</summary>
  2895. <param name="item">The object to locate in the list. The value can be null for reference types.</param>
  2896. <param name="index">The zero-based starting index of the backward search.</param>
  2897. <param name="count">The number of elements in the section to search.</param>
  2898. <param name="equalityComparer">The equality comparer to use in the search.</param>
  2899. <returns>The zero-based index of the last occurrence of item within the range of elements in the list that contains count number of elements and ends at index, if found; otherwise, –1.</returns>
  2900. </member>
  2901. <member name="M:System.Collections.Immutable.ImmutableList`1.Remove(`0)">
  2902. <summary>Removes the first occurrence of the specified object from this immutable list.</summary>
  2903. <param name="value">The object to remove.</param>
  2904. <returns>A new list with the object removed, or this list if the specified object is not in this list.</returns>
  2905. </member>
  2906. <member name="M:System.Collections.Immutable.ImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
  2907. <summary>Removes the first occurrence of the object that matches the specified value from this immutable list.</summary>
  2908. <param name="value">The value of the element to remove from the list.</param>
  2909. <param name="equalityComparer">The equality comparer to use in the search.</param>
  2910. <returns>A new list with the object removed, or this list if the specified object is not in this list.</returns>
  2911. </member>
  2912. <member name="M:System.Collections.Immutable.ImmutableList`1.RemoveAll(System.Predicate{`0})">
  2913. <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
  2914. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  2915. <returns>The new list with the elements removed.</returns>
  2916. </member>
  2917. <member name="M:System.Collections.Immutable.ImmutableList`1.RemoveAt(System.Int32)">
  2918. <summary>Removes the element at the specified index.</summary>
  2919. <param name="index">The zero-based index of the element to remove.</param>
  2920. <returns>A new list with the element removed.</returns>
  2921. </member>
  2922. <member name="M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  2923. <summary>Removes a range of elements from this immutable list.</summary>
  2924. <param name="items">The collection whose elements should be removed if matches are found in this list.</param>
  2925. <returns>A new list with the elements removed.</returns>
  2926. </member>
  2927. <member name="M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  2928. <summary>Removes the specified values from this list.</summary>
  2929. <param name="items">The items to remove if matches are found in this list.</param>
  2930. <param name="equalityComparer">The equality comparer to use in the search.</param>
  2931. <returns>A new list with the elements removed.</returns>
  2932. </member>
  2933. <member name="M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Int32,System.Int32)">
  2934. <summary>Removes a range of elements, starting from the specified index and containing the specified number of elements, from this immutable list.</summary>
  2935. <param name="index">The starting index to begin removal.</param>
  2936. <param name="count">The number of elements to remove.</param>
  2937. <returns>A new list with the elements removed.</returns>
  2938. </member>
  2939. <member name="M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0)">
  2940. <summary>Replaces the specified element in the immutable list with a new element.</summary>
  2941. <param name="oldValue">The element to replace.</param>
  2942. <param name="newValue">The element to replace oldValue with.</param>
  2943. <returns>The new list with the replaced element, even if it is equal to the old element.</returns>
  2944. <exception cref="T:System.ArgumentException"><paramref name="oldValue">oldValue</paramref> does not exist in the immutable list.</exception>
  2945. </member>
  2946. <member name="M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
  2947. <summary>Replaces the specified element in the immutable list with a new element.</summary>
  2948. <param name="oldValue">The element to replace in the list.</param>
  2949. <param name="newValue">The element to replace oldValue with.</param>
  2950. <param name="equalityComparer">The comparer to use to check for equality.</param>
  2951. <returns>A new list with the object replaced, or this list if the specified object is not in this list.</returns>
  2952. </member>
  2953. <member name="M:System.Collections.Immutable.ImmutableList`1.Reverse(System.Int32,System.Int32)">
  2954. <summary>Reverses the order of the elements in the specified range of the immutable list.</summary>
  2955. <param name="index">The zero-based starting index of the range to reverse.</param>
  2956. <param name="count">The number of elements in the range to reverse.</param>
  2957. <returns>The reversed list.</returns>
  2958. </member>
  2959. <member name="M:System.Collections.Immutable.ImmutableList`1.Reverse">
  2960. <summary>Reverses the order of the elements in the entire immutable list.</summary>
  2961. <returns>The reversed list.</returns>
  2962. </member>
  2963. <member name="M:System.Collections.Immutable.ImmutableList`1.SetItem(System.Int32,`0)">
  2964. <summary>Replaces an element at a given position in the immutable list with the specified element.</summary>
  2965. <param name="index">The position in the list of the element to replace.</param>
  2966. <param name="value">The element to replace the old element with.</param>
  2967. <returns>The new list with the replaced element, even if it is equal to the old element at that position.</returns>
  2968. </member>
  2969. <member name="M:System.Collections.Immutable.ImmutableList`1.Sort">
  2970. <summary>Sorts the elements in the entire immutable list using the default comparer.</summary>
  2971. <returns>The sorted list.</returns>
  2972. </member>
  2973. <member name="M:System.Collections.Immutable.ImmutableList`1.Sort(System.Collections.Generic.IComparer{`0})">
  2974. <summary>Sorts the elements in the entire immutable list using the specified comparer.</summary>
  2975. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer (<see cref="P:System.Collections.Generic.Comparer`1.Default"></see>).</param>
  2976. <returns>The sorted list.</returns>
  2977. </member>
  2978. <member name="M:System.Collections.Immutable.ImmutableList`1.Sort(System.Comparison{`0})">
  2979. <summary>Sorts the elements in the entire immutable list using the specified comparer.</summary>
  2980. <param name="comparison">The delegate to use when comparing elements.</param>
  2981. <returns>The sorted list.</returns>
  2982. </member>
  2983. <member name="M:System.Collections.Immutable.ImmutableList`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
  2984. <summary>Sorts a range of elements in the immutable list using the specified comparer.</summary>
  2985. <param name="index">The zero-based starting index of the range to sort.</param>
  2986. <param name="count">The length of the range to sort.</param>
  2987. <param name="comparer">The implementation to use when comparing elements, or null to use the default comparer (<see cref="P:System.Collections.Generic.Comparer`1.Default"></see>).</param>
  2988. <returns>The sorted list.</returns>
  2989. </member>
  2990. <member name="M:System.Collections.Immutable.ImmutableList`1.ToBuilder">
  2991. <summary>Creates a list that has the same contents as this list and can be efficiently mutated across multiple operations using standard mutable interfaces.</summary>
  2992. <returns>The created list with the same contents as this list.</returns>
  2993. </member>
  2994. <member name="M:System.Collections.Immutable.ImmutableList`1.TrueForAll(System.Predicate{`0})">
  2995. <summary>Determines whether every element in the immutable list matches the conditions defined by the specified predicate.</summary>
  2996. <param name="match">The delegate that defines the conditions to check against the elements.</param>
  2997. <returns>true if every element in the immutable list matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true.</returns>
  2998. </member>
  2999. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  3000. <summary>Adds the specified item to the immutable list.</summary>
  3001. <param name="item">The item to add.</param>
  3002. <exception cref="T:System.NotImplementedException"></exception>
  3003. </member>
  3004. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#ICollection{T}#Clear">
  3005. <summary>Removes all items from the immutable list.</summary>
  3006. <exception cref="T:System.NotSupportedException"></exception>
  3007. </member>
  3008. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  3009. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  3010. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  3011. </member>
  3012. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
  3013. <summary>Removes the first occurrence of a specific object from the immutable list.</summary>
  3014. <param name="item">The object to remove.</param>
  3015. <returns>true if <paramref name="item">item</paramref> was successfully removed from the list; otherwise, false. This method also returns false if <paramref name="item">item</paramref> is not found in the original list.</returns>
  3016. </member>
  3017. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  3018. <summary>Returns an enumerator that iterates through the immutable list.</summary>
  3019. <returns>An enumerator that can be used to iterate through the list.</returns>
  3020. </member>
  3021. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)">
  3022. <summary>Inserts an object in the immutable list at the specified index.</summary>
  3023. <param name="index">The zero-based index at which item should be inserted.</param>
  3024. <param name="item">The object to insert.</param>
  3025. <exception cref="T:System.NotSupportedException"></exception>
  3026. </member>
  3027. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#IList{T}#Item(System.Int32)">
  3028. <summary>Gets or sets the value at the specified index.</summary>
  3029. <param name="index"></param>
  3030. <returns></returns>
  3031. <exception cref="T:System.IndexOutOfRangeException">Thrown from getter when <paramref name="index">index</paramref> is negative or not less than <see cref="System.Collections.Immutable.ImmutableList`1.Count"></see>.</exception>
  3032. <exception cref="T:System.NotSupportedException">Always thrown from the setter.</exception>
  3033. </member>
  3034. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)">
  3035. <summary>Removes the value at the specified index.</summary>
  3036. <param name="index">The zero-based index of the item to remove.</param>
  3037. <exception cref="T:System.NotSupportedException"></exception>
  3038. </member>
  3039. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  3040. <summary>Copies the entire immutable list to a compatible one-dimensional array, starting at the specified array index.</summary>
  3041. <param name="array">The one-dimensional array that is the destination of the elements copied from immutable list.</param>
  3042. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  3043. </member>
  3044. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#ICollection#IsSynchronized">
  3045. <summary>See the <see cref="T:System.Collections.ICollection"></see> interface.</summary>
  3046. <returns></returns>
  3047. </member>
  3048. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#ICollection#SyncRoot">
  3049. <summary>See <see cref="T:System.Collections.ICollection"></see>.</summary>
  3050. <returns></returns>
  3051. </member>
  3052. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IEnumerable#GetEnumerator">
  3053. <summary>Returns an enumerator that iterates through the immutable list.</summary>
  3054. <returns>An enumerator that can be used to iterate through the list.</returns>
  3055. </member>
  3056. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Add(System.Object)">
  3057. <summary>Adds an item to the immutable list.</summary>
  3058. <param name="value">The object to add to the list.</param>
  3059. <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the list.</returns>
  3060. <exception cref="T:System.NotImplementedException"></exception>
  3061. </member>
  3062. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Clear">
  3063. <summary>Removes all items from the immutable list.</summary>
  3064. <exception cref="T:System.NotImplementedException"></exception>
  3065. </member>
  3066. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Contains(System.Object)">
  3067. <summary>Determines whether the immutable list contains a specific value.</summary>
  3068. <param name="value">The object to locate in the list.</param>
  3069. <returns>true if the object is found in the list; otherwise, false.</returns>
  3070. <exception cref="T:System.NotImplementedException"></exception>
  3071. </member>
  3072. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#IndexOf(System.Object)">
  3073. <summary>Determines the index of a specific item in the immutable list.</summary>
  3074. <param name="value">The object to locate in the list.</param>
  3075. <returns>The index of <paramref name="value">value</paramref> if found in the list; otherwise, -1.</returns>
  3076. <exception cref="T:System.NotImplementedException"></exception>
  3077. </member>
  3078. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Insert(System.Int32,System.Object)">
  3079. <summary>Inserts an item into the immutable list at the specified index.</summary>
  3080. <param name="index">The zero-based index at which value should be inserted.</param>
  3081. <param name="value">The object to insert into the list.</param>
  3082. <exception cref="T:System.NotImplementedException"></exception>
  3083. </member>
  3084. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#IsFixedSize">
  3085. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
  3086. <returns>true if the <see cref="System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
  3087. </member>
  3088. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#IsReadOnly">
  3089. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  3090. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  3091. </member>
  3092. <member name="P:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Item(System.Int32)">
  3093. <summary>Gets or sets the <see cref="T:System.Object"></see> at the specified index.</summary>
  3094. <param name="index">The index.</param>
  3095. <returns>The value at the specified index.</returns>
  3096. <exception cref="T:System.IndexOutOfRangeException">Thrown from getter when <paramref name="index">index</paramref> is negative or not less than <see cref="System.Collections.Immutable.ImmutableList`1.Count"></see>.</exception>
  3097. <exception cref="T:System.NotSupportedException">Always thrown from the setter.</exception>
  3098. </member>
  3099. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#Remove(System.Object)">
  3100. <summary>Removes the first occurrence of a specific object from the immutable list.</summary>
  3101. <param name="value">The object to remove from the list.</param>
  3102. <exception cref="T:System.NotImplementedException"></exception>
  3103. </member>
  3104. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#IList#RemoveAt(System.Int32)">
  3105. <summary>Removes the item at the specified index of the immutable list.</summary>
  3106. <param name="index">The zero-based index of the item to remove.</param>
  3107. <exception cref="T:System.NotSupportedException"></exception>
  3108. </member>
  3109. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#Add(`0)">
  3110. <summary>Adds the specified value to this immutable list.</summary>
  3111. <param name="value">The value to add.</param>
  3112. <returns>A new list with the element added, or this list if the element is already in the list.</returns>
  3113. </member>
  3114. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#AddRange(System.Collections.Generic.IEnumerable{`0})">
  3115. <summary>Adds the specified values to this immutable list.</summary>
  3116. <param name="items">The values to add.</param>
  3117. <returns>A new list with the elements added, or this list if the elements are already in the list.</returns>
  3118. </member>
  3119. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#Clear">
  3120. <summary>Retrieves an empty list that has the same sorting and ordering semantics as this instance.</summary>
  3121. <returns>An empty list that has the same sorting and ordering semantics as this instance.</returns>
  3122. </member>
  3123. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#Insert(System.Int32,`0)">
  3124. <summary>Inserts the specified element at the specified index in the immutable list.</summary>
  3125. <param name="index">The index at which to insert the value.</param>
  3126. <param name="item">The element to insert.</param>
  3127. <returns>A new immutable list that includes the specified element.</returns>
  3128. </member>
  3129. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  3130. <summary>Inserts the specified elements at the specified index in the immutable list.</summary>
  3131. <param name="index">The index at which to insert the elements.</param>
  3132. <param name="items">The elements to insert.</param>
  3133. <returns>A new immutable list that includes the specified elements.</returns>
  3134. </member>
  3135. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#Remove(`0,System.Collections.Generic.IEqualityComparer{`0})">
  3136. <summary>Removes the element with the specified value from the list.</summary>
  3137. <param name="value">The value of the element to remove from the list.</param>
  3138. <param name="equalityComparer">The comparer to use to compare elements for equality.</param>
  3139. <returns>Returns a new <see cref="System.Collections.Immutable.ImmutableList`1"></see> with the specified element removed.</returns>
  3140. </member>
  3141. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#RemoveAll(System.Predicate{`0})">
  3142. <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
  3143. <param name="match">The delegate that defines the conditions of the elements to remove.</param>
  3144. <returns>A new immutable list with the elements removed.</returns>
  3145. </member>
  3146. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#RemoveAt(System.Int32)">
  3147. <summary>Removes the element at the specified index of the immutable list.</summary>
  3148. <param name="index">The index of the element to remove.</param>
  3149. <returns>A new list with the element removed.</returns>
  3150. </member>
  3151. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  3152. <summary>Removes a range of elements from this immutable list that match the items specified.</summary>
  3153. <param name="items">The range of items to remove from the list, if found.</param>
  3154. <param name="equalityComparer">The equality comparer to use to compare elements.</param>
  3155. <returns>An immutable list with the items removed.</returns>
  3156. <exception cref="T:System.ArgumentNullException"><paramref name="items">items</paramref> or <paramref name="equalityComparer">equalityComparer</paramref> is null.</exception>
  3157. </member>
  3158. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#RemoveRange(System.Int32,System.Int32)">
  3159. <summary>Removes the specified number of elements at the specified location from this list.</summary>
  3160. <param name="index">The starting index of the range of elements to remove.</param>
  3161. <param name="count">The number of elements to remove.</param>
  3162. <returns>A new list with the elements removed.</returns>
  3163. </member>
  3164. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0})">
  3165. <summary>Replaces an element in the list with the specified element.</summary>
  3166. <param name="oldValue">The element to replace.</param>
  3167. <param name="newValue">The element to replace the old element with.</param>
  3168. <param name="equalityComparer">The equality comparer to use in the search.</param>
  3169. <returns>The new list.</returns>
  3170. <exception cref="T:System.ArgumentException">Thrown when the old value does not exist in the list.</exception>
  3171. </member>
  3172. <member name="M:System.Collections.Immutable.ImmutableList`1.System#Collections#Immutable#IImmutableList{T}#SetItem(System.Int32,`0)">
  3173. <summary>Replaces an element in the list at a given position with the specified element.</summary>
  3174. <param name="index">The position in the list of the element to replace.</param>
  3175. <param name="value">The element to replace the old element with.</param>
  3176. <returns>The new list.</returns>
  3177. </member>
  3178. <member name="T:System.Collections.Immutable.ImmutableList">
  3179. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableList`1"></see> class.
  3180. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3181. </member>
  3182. <member name="M:System.Collections.Immutable.ImmutableList.Create``1">
  3183. <summary>Creates an empty immutable list.</summary>
  3184. <typeparam name="T">The type of items to be stored in the .</typeparam>
  3185. <returns>An empty .</returns>
  3186. </member>
  3187. <member name="M:System.Collections.Immutable.ImmutableList.Create``1(``0)">
  3188. <summary>Creates a new immutable list that contains the specified item.</summary>
  3189. <param name="item">The item to prepopulate the list with.</param>
  3190. <typeparam name="T">The type of items in the .</typeparam>
  3191. <returns>A new that contains the specified item.</returns>
  3192. </member>
  3193. <member name="M:System.Collections.Immutable.ImmutableList.Create``1(``0[])">
  3194. <summary>Creates a new immutable list that contains the specified array of items.</summary>
  3195. <param name="items">An array that contains the items to prepopulate the list with.</param>
  3196. <typeparam name="T">The type of items in the .</typeparam>
  3197. <returns>A new immutable list that contains the specified items.</returns>
  3198. </member>
  3199. <member name="M:System.Collections.Immutable.ImmutableList.CreateBuilder``1">
  3200. <summary>Creates a new immutable list builder.</summary>
  3201. <typeparam name="T">The type of items stored by the collection.</typeparam>
  3202. <returns>The immutable collection builder.</returns>
  3203. </member>
  3204. <member name="M:System.Collections.Immutable.ImmutableList.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  3205. <summary>Creates a new immutable list that contains the specified items.</summary>
  3206. <param name="items">The items to add to the list.</param>
  3207. <typeparam name="T">The type of items in the .</typeparam>
  3208. <returns>Returns an immutable list that contains the specified items.</returns>
  3209. </member>
  3210. <member name="M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32)">
  3211. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.</summary>
  3212. <param name="list">The list to search.</param>
  3213. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3214. <param name="startIndex">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  3215. <typeparam name="T">The type of items in the list.</typeparam>
  3216. <returns>The zero-based index of the first occurrence of item within the range of elements in the Immutable list that extends from index to the last element, if found; otherwise, –1.</returns>
  3217. </member>
  3218. <member name="M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32)">
  3219. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.</summary>
  3220. <param name="list">The list to search.</param>
  3221. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3222. <param name="startIndex">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
  3223. <param name="count">The number of elements in the section to search.</param>
  3224. <typeparam name="T">The type of items in the list.</typeparam>
  3225. <returns>The zero-based index of the first occurrence of item within the range of elements in the Immutable list that extends from index to the last element, if found; otherwise, –1.</returns>
  3226. </member>
  3227. <member name="M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0)">
  3228. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the list.</summary>
  3229. <param name="list">The list to search.</param>
  3230. <param name="item">The object to locate in the list. The value can be null for reference types.</param>
  3231. <typeparam name="T">The type of items in the list.</typeparam>
  3232. <returns>The zero-based index of the first occurrence of item within the range of elements in the list that extends from index to the last element, if found; otherwise, –1.</returns>
  3233. </member>
  3234. <member name="M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
  3235. <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the list.</summary>
  3236. <param name="list">The list to search.</param>
  3237. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3238. <param name="equalityComparer">The equality comparer to use in the search.</param>
  3239. <typeparam name="T">The type of items in the list.</typeparam>
  3240. <returns>The zero-based index of the first occurrence of item within the range of elements in the immutable list that extends from index to the last element, if found; otherwise, –1.</returns>
  3241. </member>
  3242. <member name="M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0)">
  3243. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.</summary>
  3244. <param name="list">The list to search.</param>
  3245. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3246. <typeparam name="T">The type of items in the list.</typeparam>
  3247. <returns>The zero-based index of the last occurrence of item within the entire the Immutable list, if found; otherwise, –1.</returns>
  3248. </member>
  3249. <member name="M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
  3250. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.</summary>
  3251. <param name="list">The list to search.</param>
  3252. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3253. <param name="equalityComparer">The equality comparer to use in the search.</param>
  3254. <typeparam name="T">The type of items in the list.</typeparam>
  3255. <returns>The zero-based index of the last occurrence of item within the entire the Immutable list, if found; otherwise, –1.</returns>
  3256. </member>
  3257. <member name="M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32)">
  3258. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.</summary>
  3259. <param name="list">The list to search.</param>
  3260. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3261. <param name="startIndex">The zero-based starting index of the backward search.</param>
  3262. <typeparam name="T">The type of items in the list.</typeparam>
  3263. <returns>The zero-based index of the last occurrence of item within the range of elements in the Immutable list that extends from the first element to index, if found; otherwise, –1.</returns>
  3264. </member>
  3265. <member name="M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32)">
  3266. <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.</summary>
  3267. <param name="list">The list to search.</param>
  3268. <param name="item">The object to locate in the Immutable list. The value can be null for reference types.</param>
  3269. <param name="startIndex">The zero-based starting index of the backward search.</param>
  3270. <param name="count">The number of elements in the section to search.</param>
  3271. <typeparam name="T">The type of items in the list.</typeparam>
  3272. <returns>The zero-based index of the last occurrence of item within the range of elements in the Immutable list that extends from the first element to index, if found; otherwise, –1.</returns>
  3273. </member>
  3274. <member name="M:System.Collections.Immutable.ImmutableList.Remove``1(System.Collections.Immutable.IImmutableList{``0},``0)">
  3275. <summary>Removes the specified value from this list.</summary>
  3276. <param name="list">The list to search.</param>
  3277. <param name="value">The value to remove.</param>
  3278. <typeparam name="T">The type of items in the list.</typeparam>
  3279. <returns>A new immutable list with the element removed, or this list if the element is not in this list.</returns>
  3280. </member>
  3281. <member name="M:System.Collections.Immutable.ImmutableList.RemoveRange``1(System.Collections.Immutable.IImmutableList{``0},System.Collections.Generic.IEnumerable{``0})">
  3282. <summary>Removes the specified values from this list.</summary>
  3283. <param name="list">The list to search.</param>
  3284. <param name="items">The items to remove if matches are found in this list.</param>
  3285. <typeparam name="T">The type of items in the list.</typeparam>
  3286. <returns>A new immutable list with the elements removed.</returns>
  3287. </member>
  3288. <member name="M:System.Collections.Immutable.ImmutableList.Replace``1(System.Collections.Immutable.IImmutableList{``0},``0,``0)">
  3289. <summary>Replaces the first equal element in the list with the specified element.</summary>
  3290. <param name="list">The list to search.</param>
  3291. <param name="oldValue">The element to replace.</param>
  3292. <param name="newValue">The element to replace the old element with.</param>
  3293. <typeparam name="T">The type of items in the list.</typeparam>
  3294. <returns>The new list -- even if the value being replaced is equal to the new value for that position.</returns>
  3295. <exception cref="T:System.ArgumentException">Thrown when the old value does not exist in the list.</exception>
  3296. </member>
  3297. <member name="M:System.Collections.Immutable.ImmutableList.ToImmutableList``1(System.Collections.Generic.IEnumerable{``0})">
  3298. <summary>Enumerates a sequence and produces an immutable list of its contents.</summary>
  3299. <param name="source">The sequence to enumerate.</param>
  3300. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  3301. <returns>An immutable list that contains the items in the specified sequence.</returns>
  3302. </member>
  3303. <member name="T:System.Collections.Immutable.ImmutableQueue`1.Enumerator">
  3304. <summary>Enumerates the contents of an immutable queue without allocating any memory.
  3305. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3306. <typeparam name="T"></typeparam>
  3307. </member>
  3308. <member name="P:System.Collections.Immutable.ImmutableQueue`1.Enumerator.Current">
  3309. <summary>Gets the element at the current position of the enumerator.</summary>
  3310. <returns>The element at the current position of the enumerator.</returns>
  3311. </member>
  3312. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Enumerator.MoveNext">
  3313. <summary>Advances the enumerator to the next element of the immutable queue.</summary>
  3314. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the queue.</returns>
  3315. </member>
  3316. <member name="T:System.Collections.Immutable.ImmutableQueue`1">
  3317. <summary>Represents an immutable queue.
  3318. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3319. <typeparam name="T">The type of elements in the queue.</typeparam>
  3320. </member>
  3321. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Clear">
  3322. <summary>Removes all objects from the immutable queue.</summary>
  3323. <returns>The empty immutable queue.</returns>
  3324. </member>
  3325. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Dequeue">
  3326. <summary>Removes the element at the beginning of the immutable queue, and returns the new queue.</summary>
  3327. <returns>The new immutable queue; never null.</returns>
  3328. </member>
  3329. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Dequeue(`0@)">
  3330. <summary>Removes the item at the beginning of the immutable queue, and returns the new queue.</summary>
  3331. <param name="value">When this method returns, contains the element from the beginning of the queue.</param>
  3332. <returns>The new immutable queue with the beginning element removed.</returns>
  3333. </member>
  3334. <member name="P:System.Collections.Immutable.ImmutableQueue`1.Empty">
  3335. <summary>Gets an empty immutable queue.</summary>
  3336. <returns>An empty immutable queue.</returns>
  3337. </member>
  3338. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Enqueue(`0)">
  3339. <summary>Adds an element to the end of the immutable queue, and returns the new queue.</summary>
  3340. <param name="value">The element to add.</param>
  3341. <returns>The new immutable queue.</returns>
  3342. </member>
  3343. <member name="M:System.Collections.Immutable.ImmutableQueue`1.GetEnumerator">
  3344. <summary>Returns an enumerator that iterates through the immutable queue.</summary>
  3345. <returns>An enumerator that can be used to iterate through the queue.</returns>
  3346. </member>
  3347. <member name="P:System.Collections.Immutable.ImmutableQueue`1.IsEmpty">
  3348. <summary>Gets a value that indicates whether this immutable queue is empty.
  3349. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3350. <returns>true if this queue is empty; otherwise, false.</returns>
  3351. </member>
  3352. <member name="M:System.Collections.Immutable.ImmutableQueue`1.Peek">
  3353. <summary>Returns the element at the beginning of the immutable queue without removing it.</summary>
  3354. <returns>The element at the beginning of the queue.</returns>
  3355. </member>
  3356. <member name="M:System.Collections.Immutable.ImmutableQueue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  3357. <summary>Returns an enumerator that iterates through the collection.</summary>
  3358. <returns>An enumerator that can be used to iterate through the collection.</returns>
  3359. </member>
  3360. <member name="M:System.Collections.Immutable.ImmutableQueue`1.System#Collections#IEnumerable#GetEnumerator">
  3361. <summary>Returns an enumerator that iterates through a collection.</summary>
  3362. <returns>An <see cref="System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.</returns>
  3363. </member>
  3364. <member name="M:System.Collections.Immutable.ImmutableQueue`1.System#Collections#Immutable#IImmutableQueue{T}#Clear">
  3365. <summary>Removes all elements from the immutable queue.</summary>
  3366. <returns>The empty immutable queue.</returns>
  3367. </member>
  3368. <member name="M:System.Collections.Immutable.ImmutableQueue`1.System#Collections#Immutable#IImmutableQueue{T}#Dequeue">
  3369. <summary>Removes the element at the beginning of the immutable queue, and returns the new queue.</summary>
  3370. <returns>The new immutable queue; never null.</returns>
  3371. </member>
  3372. <member name="M:System.Collections.Immutable.ImmutableQueue`1.System#Collections#Immutable#IImmutableQueue{T}#Enqueue(`0)">
  3373. <summary>Adds an element to the end of the immutable queue, and returns the new queue.</summary>
  3374. <param name="value">The element to add.</param>
  3375. <returns>The new immutable queue.</returns>
  3376. </member>
  3377. <member name="T:System.Collections.Immutable.ImmutableQueue">
  3378. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableQueue`1"></see> class.
  3379. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3380. </member>
  3381. <member name="M:System.Collections.Immutable.ImmutableQueue.Create``1">
  3382. <summary>Creates an empty immutable queue.</summary>
  3383. <typeparam name="T">The type of items to be stored in the immutable queue.</typeparam>
  3384. <returns>An empty immutable queue.</returns>
  3385. </member>
  3386. <member name="M:System.Collections.Immutable.ImmutableQueue.Create``1(``0)">
  3387. <summary>Creates a new immutable queue that contains the specified item.</summary>
  3388. <param name="item">The item to prepopulate the queue with.</param>
  3389. <typeparam name="T">The type of items in the immutable queue.</typeparam>
  3390. <returns>A new immutable queue that contains the specified item.</returns>
  3391. </member>
  3392. <member name="M:System.Collections.Immutable.ImmutableQueue.Create``1(``0[])">
  3393. <summary>Creates a new immutable queue that contains the specified array of items.</summary>
  3394. <param name="items">An array that contains the items to prepopulate the queue with.</param>
  3395. <typeparam name="T">The type of items in the immutable queue.</typeparam>
  3396. <returns>A new immutable queue that contains the specified items.</returns>
  3397. </member>
  3398. <member name="M:System.Collections.Immutable.ImmutableQueue.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  3399. <summary>Creates a new immutable queue that contains the specified items.</summary>
  3400. <param name="items">The items to add to the queue before immutability is applied.</param>
  3401. <typeparam name="T">The type of elements in the queue.</typeparam>
  3402. <returns>An immutable queue that contains the specified items.</returns>
  3403. </member>
  3404. <member name="M:System.Collections.Immutable.ImmutableQueue.Dequeue``1(System.Collections.Immutable.IImmutableQueue{``0},``0@)">
  3405. <summary>Removes the item at the beginning of the immutable queue, and returns the new queue.</summary>
  3406. <param name="queue">The queue to remove the item from.</param>
  3407. <param name="value">When this method returns, contains the item from the beginning of the queue.</param>
  3408. <typeparam name="T">The type of elements in the immutable queue.</typeparam>
  3409. <returns>The new queue with the item removed.</returns>
  3410. </member>
  3411. <member name="T:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder">
  3412. <summary>Represents a sorted dictionary that mutates with little or no memory allocations and that can produce or build on immutable sorted dictionary instances very efficiently.
  3413. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3414. <typeparam name="TKey"></typeparam>
  3415. <typeparam name="TValue"></typeparam>
  3416. </member>
  3417. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  3418. <summary>Adds the specified item to the immutable sorted dictionary.</summary>
  3419. <param name="item">The object to add to the dictionary.</param>
  3420. </member>
  3421. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(`0,`1)">
  3422. <summary>Adds an element that has the specified key and value to the immutable sorted dictionary.</summary>
  3423. <param name="key">The key of the element to add.</param>
  3424. <param name="value">The value of the element to add.</param>
  3425. </member>
  3426. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  3427. <summary>Adds a sequence of values to the immutable sorted dictionary.</summary>
  3428. <param name="items">The items to add to the dictionary.</param>
  3429. </member>
  3430. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Clear">
  3431. <summary>Removes all items from the immutable sorted dictionary.</summary>
  3432. </member>
  3433. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  3434. <summary>Determines whether the immutable sorted dictionary contains a specific value.</summary>
  3435. <param name="item">The object to locate in the dictionary.</param>
  3436. <returns>true if <paramref name="item">item</paramref> is found in the dictionary; otherwise, false.</returns>
  3437. </member>
  3438. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsKey(`0)">
  3439. <summary>Determines whether the immutable sorted dictionary contains an element with the specified key.</summary>
  3440. <param name="key">The key to locate in the dictionary.</param>
  3441. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  3442. </member>
  3443. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsValue(`1)">
  3444. <summary>Determines whether the immutable sorted dictionary contains an element with the specified value.</summary>
  3445. <param name="value">The value to locate in the dictionary. The value can be null for reference types.</param>
  3446. <returns>true if the immutable sorted dictionary contains an element with the specified value; otherwise, false.</returns>
  3447. </member>
  3448. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Count">
  3449. <summary>Gets the number of elements in this immutable sorted dictionary.</summary>
  3450. <returns>The number of elements in this dictionary.</returns>
  3451. </member>
  3452. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetEnumerator">
  3453. <summary>Returns an enumerator that iterates through the immutable sorted dictionary.</summary>
  3454. <returns>An enumerator that can be used to iterate through the dictionary.</returns>
  3455. </member>
  3456. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0,`1)">
  3457. <summary>Gets the value for a given key if a matching key exists in the dictionary; otherwise the default value.</summary>
  3458. <param name="key">The key to search for.</param>
  3459. <param name="defaultValue">The default value to return if no matching key is found in the dictionary.</param>
  3460. <returns>The value for the key, or <paramref name="defaultValue">defaultValue</paramref> if no matching key was found.</returns>
  3461. </member>
  3462. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0)">
  3463. <summary>Gets the value for a given key if a matching key exists in the dictionary; otherwise the default value.</summary>
  3464. <param name="key">The key to search for.</param>
  3465. <returns>The value for the key, or default(TValue) if no matching key was found.</returns>
  3466. </member>
  3467. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Item(`0)">
  3468. <summary>Gets or sets the value for a specified key in the immutable sorted dictionary.</summary>
  3469. <param name="key">The key to retrieve the value for.</param>
  3470. <returns>The value associated with the given key.</returns>
  3471. </member>
  3472. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.KeyComparer">
  3473. <summary>Gets or sets the key comparer.</summary>
  3474. <returns>The key comparer.</returns>
  3475. </member>
  3476. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Keys">
  3477. <summary>Gets a strongly typed, read-only collection of elements.</summary>
  3478. <returns>A strongly typed, read-only collection of elements.</returns>
  3479. </member>
  3480. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  3481. <summary>Removes the first occurrence of a specific object from the immutable sorted dictionary.</summary>
  3482. <param name="item">The object to remove from the dictionary.</param>
  3483. <returns>true if <paramref name="item">item</paramref> was successfully removed from the dictionary; otherwise, false. This method also returns false if <paramref name="item">item</paramref> is not found in the dictionary.</returns>
  3484. </member>
  3485. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(`0)">
  3486. <summary>Removes the element with the specified key from the immutable sorted dictionary.</summary>
  3487. <param name="key">The key of the element to remove.</param>
  3488. <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key">key</paramref> was not found in the original dictionary.</returns>
  3489. </member>
  3490. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  3491. <summary>Removes any entries with keys that match those found in the specified sequence from the immutable sorted dictionary.</summary>
  3492. <param name="keys">The keys for entries to remove from the dictionary.</param>
  3493. </member>
  3494. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ToImmutable">
  3495. <summary>Creates an immutable sorted dictionary based on the contents of this instance.</summary>
  3496. <returns>An immutable sorted dictionary.</returns>
  3497. </member>
  3498. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetKey(`0,`0@)">
  3499. <summary>Determines whether this dictionary contains a specified key.</summary>
  3500. <param name="equalKey">The key to search for.</param>
  3501. <param name="actualKey">The matching key located in the dictionary if found, or equalkey if no match is found.</param>
  3502. <returns>true if a match for <paramref name="equalKey">equalKey</paramref> is found; otherwise, false.</returns>
  3503. </member>
  3504. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetValue(`0,`1@)">
  3505. <summary>Gets the value associated with the specified key.</summary>
  3506. <param name="key">The key whose value will be retrieved.</param>
  3507. <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
  3508. <returns>true if the object that implements the dictionary contains an element with the specified key; otherwise, false.</returns>
  3509. </member>
  3510. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ValueComparer">
  3511. <summary>Gets or sets the value comparer.</summary>
  3512. <returns>The value comparer.</returns>
  3513. </member>
  3514. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Values">
  3515. <summary>Gets a collection that contains the values of the immutable sorted dictionary.</summary>
  3516. <returns>A collection that contains the values of the object that implements the dictionary.</returns>
  3517. </member>
  3518. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  3519. <param name="array"></param>
  3520. <param name="arrayIndex"></param>
  3521. </member>
  3522. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
  3523. <returns></returns>
  3524. </member>
  3525. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  3526. <returns></returns>
  3527. </member>
  3528. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  3529. <returns></returns>
  3530. </member>
  3531. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
  3532. <returns></returns>
  3533. </member>
  3534. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  3535. <summary>Copies the elements of the dictionary to an array, starting at a particular array index.
  3536. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3537. <param name="array">The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.</param>
  3538. <param name="index">The zero-based index in array at which copying begins.</param>
  3539. </member>
  3540. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#ICollection#IsSynchronized">
  3541. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  3542. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  3543. </member>
  3544. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#ICollection#SyncRoot">
  3545. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  3546. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  3547. </member>
  3548. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Add(System.Object,System.Object)">
  3549. <summary>Adds an element with the provided key and value to the dictionary object.</summary>
  3550. <param name="key">The key of the element to add.</param>
  3551. <param name="value">The value of the element to add.</param>
  3552. </member>
  3553. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Contains(System.Object)">
  3554. <summary>Determines whether the dictionary object contains an element with the specified key.</summary>
  3555. <param name="key">The key to locate.</param>
  3556. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  3557. </member>
  3558. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#GetEnumerator">
  3559. <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the dictionary.</summary>
  3560. <returns>An <see cref="System.Collections.IDictionaryEnumerator"></see> object for the dictionary.</returns>
  3561. </member>
  3562. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#IsFixedSize">
  3563. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size.</summary>
  3564. <returns>true if the <see cref="System.Collections.IDictionary"></see> object has a fixed size; otherwise, false.</returns>
  3565. </member>
  3566. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#IsReadOnly">
  3567. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  3568. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  3569. </member>
  3570. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Item(System.Object)">
  3571. <summary>Gets or sets the element with the specified key.</summary>
  3572. <param name="key">The key.</param>
  3573. <returns></returns>
  3574. </member>
  3575. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Keys">
  3576. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  3577. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the keys of the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  3578. </member>
  3579. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Remove(System.Object)">
  3580. <summary>Removes the element with the specified key from the dictionary.</summary>
  3581. <param name="key">The key of the element to remove.</param>
  3582. </member>
  3583. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IDictionary#Values">
  3584. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  3585. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the values in the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  3586. </member>
  3587. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.System#Collections#IEnumerable#GetEnumerator">
  3588. <summary>Returns an enumerator that iterates through a collection.</summary>
  3589. <returns>An enumerator object that can be used to iterate through the collection.</returns>
  3590. </member>
  3591. <member name="T:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator">
  3592. <summary>Enumerates the contents of a binary tree.
  3593. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3594. <typeparam name="TKey"></typeparam>
  3595. <typeparam name="TValue"></typeparam>
  3596. </member>
  3597. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Current">
  3598. <summary>Gets the element at the current position of the enumerator.</summary>
  3599. <returns>The element at the current position of the enumerator.</returns>
  3600. </member>
  3601. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Dispose">
  3602. <summary>Releases the resources used by the current instance of the <see cref="T:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator"></see> class.</summary>
  3603. </member>
  3604. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.MoveNext">
  3605. <summary>Advances the enumerator to the next element of the immutable sorted dictionary.</summary>
  3606. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the sorted dictionary.</returns>
  3607. </member>
  3608. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Reset">
  3609. <summary>Sets the enumerator to its initial position, which is before the first element in the immutable sorted dictionary.</summary>
  3610. </member>
  3611. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
  3612. <summary>The current element.</summary>
  3613. <returns></returns>
  3614. </member>
  3615. <member name="T:System.Collections.Immutable.ImmutableSortedDictionary`2">
  3616. <summary>Represents an immutable sorted dictionary.
  3617. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3618. <typeparam name="TKey">The type of the key contained in the dictionary.</typeparam>
  3619. <typeparam name="TValue">The type of the value contained in the dictionary.</typeparam>
  3620. </member>
  3621. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Add(`0,`1)">
  3622. <summary>Adds an element with the specified key and value to the immutable sorted dictionary.</summary>
  3623. <param name="key">The key of the entry to add.</param>
  3624. <param name="value">The value of entry to add.</param>
  3625. <returns>A new immutable sorted dictionary that contains the additional key/value pair.</returns>
  3626. <exception cref="T:System.ArgumentException">The given key already exists in the dictionary but has a different value.</exception>
  3627. </member>
  3628. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  3629. <summary>Adds the specific key/value pairs to the immutable sorted dictionary.</summary>
  3630. <param name="items">The key/value pairs to add.</param>
  3631. <returns>A new immutable dictionary that contains the additional key/value pairs.</returns>
  3632. <exception cref="T:System.ArgumentException">One of the given keys already exists in the dictionary but has a different value.</exception>
  3633. </member>
  3634. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Clear">
  3635. <summary>Retrieves an empty immutable sorted dictionary that has the same ordering and key/value comparison rules as this dictionary instance.</summary>
  3636. <returns>An empty dictionary with equivalent ordering and key/value comparison rules.</returns>
  3637. </member>
  3638. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  3639. <summary>Determines whether this immutable sorted dictionary contains the specified key/value pair.</summary>
  3640. <param name="pair">The key/value pair to locate.</param>
  3641. <returns>true if the specified key/value pair is found in the dictionary; otherwise, false.</returns>
  3642. </member>
  3643. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsKey(`0)">
  3644. <summary>Determines whether this immutable sorted map contains the specified key.</summary>
  3645. <param name="key">The key to locate.</param>
  3646. <returns>true if the immutable dictionary contains the specified key; otherwise, false.</returns>
  3647. </member>
  3648. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsValue(`1)">
  3649. <summary>Determines whether the immutable sorted dictionary contains an element with the specified value.</summary>
  3650. <param name="value">The value to locate. The value can be null for reference types.</param>
  3651. <returns>true if the dictionary contains an element with the specified value; otherwise, false.</returns>
  3652. </member>
  3653. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Count">
  3654. <summary>Gets the number of key/value pairs in the immutable sorted dictionary.</summary>
  3655. <returns>The number of key/value pairs in the dictionary.</returns>
  3656. </member>
  3657. <member name="F:System.Collections.Immutable.ImmutableSortedDictionary`2.Empty">
  3658. <summary>Gets an empty immutable sorted dictionary.</summary>
  3659. <returns></returns>
  3660. </member>
  3661. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.GetEnumerator">
  3662. <summary>Returns an enumerator that iterates through the immutable sorted dictionary.</summary>
  3663. <returns>An enumerator that can be used to iterate through the dictionary.</returns>
  3664. </member>
  3665. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.IsEmpty">
  3666. <summary>Gets a value that indicates whether this instance of the immutable sorted dictionary is empty.</summary>
  3667. <returns>true if this instance is empty; otherwise, false.</returns>
  3668. </member>
  3669. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Item(`0)">
  3670. <summary>Gets the <paramref name="TValue">TValue</paramref> associated with the specified key.</summary>
  3671. <param name="key">The key to retrieve the value for.</param>
  3672. <returns>The value associated with the specified key. If no results are found, the operation throws an exception.</returns>
  3673. </member>
  3674. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.KeyComparer">
  3675. <summary>Gets the key comparer for the immutable sorted dictionary.</summary>
  3676. <returns>The key comparer for the dictionary.</returns>
  3677. </member>
  3678. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Keys">
  3679. <summary>Gets the keys in the immutable sorted dictionary.</summary>
  3680. <returns>The keys in the immutable dictionary.</returns>
  3681. </member>
  3682. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.Remove(`0)">
  3683. <summary>Removes the element with the specified value from the immutable sorted dictionary.</summary>
  3684. <param name="value">The value of the element to remove.</param>
  3685. <returns>A new immutable dictionary with the specified element removed; or this instance if the specified value cannot be found in the dictionary.</returns>
  3686. </member>
  3687. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  3688. <summary>Removes the elements with the specified keys from the immutable sorted dictionary.</summary>
  3689. <param name="keys">The keys of the elements to remove.</param>
  3690. <returns>A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.</returns>
  3691. </member>
  3692. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItem(`0,`1)">
  3693. <summary>Sets the specified key and value in the immutable sorted dictionary, possibly overwriting an existing value for the given key.</summary>
  3694. <param name="key">The key of the entry to add.</param>
  3695. <param name="value">The key value to set.</param>
  3696. <returns>A new immutable sorted dictionary that contains the specified key/value pair.</returns>
  3697. </member>
  3698. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  3699. <summary>Sets the specified key/value pairs in the immutable sorted dictionary, possibly overwriting existing values for the keys.</summary>
  3700. <param name="items">The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.</param>
  3701. <returns>An immutable dictionary that contains the specified key/value pairs.</returns>
  3702. </member>
  3703. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.ToBuilder">
  3704. <summary>Creates an immutable sorted dictionary with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.</summary>
  3705. <returns>A collection with the same contents as this dictionary.</returns>
  3706. </member>
  3707. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetKey(`0,`0@)">
  3708. <summary>Determines whether this dictionary contains a specified key.</summary>
  3709. <param name="equalKey">The key to search for.</param>
  3710. <param name="actualKey">The matching key located in the dictionary if found, or equalkey if no match is found.</param>
  3711. <returns>true if a match for <paramref name="equalKey">equalKey</paramref> is found; otherwise, false.</returns>
  3712. </member>
  3713. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetValue(`0,`1@)">
  3714. <summary>Gets the value associated with the specified key.</summary>
  3715. <param name="key">The key whose value will be retrieved.</param>
  3716. <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the value parameter.</param>
  3717. <returns>true if the dictionary contains an element with the specified key; otherwise, false.</returns>
  3718. </member>
  3719. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.ValueComparer">
  3720. <summary>Gets the value comparer used to determine whether values are equal.</summary>
  3721. <returns>The value comparer used to determine whether values are equal.</returns>
  3722. </member>
  3723. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.Values">
  3724. <summary>Gets the values in the immutable sorted dictionary.</summary>
  3725. <returns>The values in the dictionary.</returns>
  3726. </member>
  3727. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0})">
  3728. <summary>Gets an instance of the immutable sorted dictionary that uses the specified key comparer.</summary>
  3729. <param name="keyComparer">The key comparer to use.</param>
  3730. <returns>An instance of the immutable dictionary that uses the given comparer.</returns>
  3731. </member>
  3732. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0},System.Collections.Generic.IEqualityComparer{`1})">
  3733. <summary>Gets an instance of the immutable sorted dictionary that uses the specified key and value comparers.</summary>
  3734. <param name="keyComparer">The key comparer to use.</param>
  3735. <param name="valueComparer">The value comparer to use.</param>
  3736. <returns>An instance of the immutable dictionary that uses the given comparers.</returns>
  3737. </member>
  3738. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  3739. <param name="item"></param>
  3740. </member>
  3741. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Clear">
  3742. </member>
  3743. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  3744. <param name="array"></param>
  3745. <param name="arrayIndex"></param>
  3746. </member>
  3747. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
  3748. <returns></returns>
  3749. </member>
  3750. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  3751. <param name="item"></param>
  3752. <returns></returns>
  3753. </member>
  3754. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Add(`0,`1)">
  3755. <param name="key"></param>
  3756. <param name="value"></param>
  3757. </member>
  3758. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Item(`0)">
  3759. <param name="key"></param>
  3760. <returns></returns>
  3761. </member>
  3762. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  3763. <returns></returns>
  3764. </member>
  3765. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Remove(`0)">
  3766. <param name="key"></param>
  3767. <returns></returns>
  3768. </member>
  3769. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  3770. <returns></returns>
  3771. </member>
  3772. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
  3773. <returns></returns>
  3774. </member>
  3775. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  3776. <summary>Copies the elements of the dictionary to an array, starting at a particular array index.</summary>
  3777. <param name="array">The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.</param>
  3778. <param name="index">The zero-based index in array at which copying begins.</param>
  3779. </member>
  3780. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#ICollection#IsSynchronized">
  3781. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  3782. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  3783. </member>
  3784. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#ICollection#SyncRoot">
  3785. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  3786. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  3787. </member>
  3788. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  3789. <summary>Adds an element with the provided key and value to the dictionary object.</summary>
  3790. <param name="key">The object to use as the key of the element to add.</param>
  3791. <param name="value">The object to use as the value of the element to add.</param>
  3792. </member>
  3793. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Clear">
  3794. <summary>Clears this instance.</summary>
  3795. <exception cref="T:System.NotSupportedException">The dictionary object is read-only.</exception>
  3796. </member>
  3797. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
  3798. <summary>Determines whether the immutable dictionary object contains an element with the specified key.</summary>
  3799. <param name="key">The key to locate in the dictionary object.</param>
  3800. <returns>true if the dictionary contains an element with the key; otherwise, false.</returns>
  3801. </member>
  3802. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
  3803. <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the immutable dictionary object.</summary>
  3804. <returns>An enumerator object for the dictionary object.</returns>
  3805. </member>
  3806. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
  3807. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size.</summary>
  3808. <returns>true if the <see cref="System.Collections.IDictionary"></see> object has a fixed size; otherwise, false.</returns>
  3809. </member>
  3810. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
  3811. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  3812. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  3813. </member>
  3814. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Item(System.Object)">
  3815. <summary>Gets or sets the element with the specified key.</summary>
  3816. <param name="key">The key.</param>
  3817. <returns></returns>
  3818. </member>
  3819. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Keys">
  3820. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  3821. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the keys of the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  3822. </member>
  3823. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
  3824. <summary>Removes the element with the specified key from the immutable dictionary object.</summary>
  3825. <param name="key">The key of the element to remove.</param>
  3826. </member>
  3827. <member name="P:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IDictionary#Values">
  3828. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1"></see> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"></see>.</summary>
  3829. <returns>An <see cref="System.Collections.Generic.ICollection`1"></see> containing the values in the object that implements <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
  3830. </member>
  3831. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
  3832. <summary>Returns an enumerator that iterates through a collection.</summary>
  3833. <returns>An enumerator object that can be used to iterate through the collection.</returns>
  3834. </member>
  3835. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Add(`0,`1)">
  3836. <param name="key"></param>
  3837. <param name="value"></param>
  3838. <returns></returns>
  3839. </member>
  3840. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  3841. <param name="pairs"></param>
  3842. <returns></returns>
  3843. </member>
  3844. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Clear">
  3845. <returns></returns>
  3846. </member>
  3847. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#Remove(`0)">
  3848. <param name="key"></param>
  3849. <returns></returns>
  3850. </member>
  3851. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#RemoveRange(System.Collections.Generic.IEnumerable{`0})">
  3852. <param name="keys"></param>
  3853. <returns></returns>
  3854. </member>
  3855. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#SetItem(`0,`1)">
  3856. <param name="key"></param>
  3857. <param name="value"></param>
  3858. <returns></returns>
  3859. </member>
  3860. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary`2.System#Collections#Immutable#IImmutableDictionary{TKey@TValue}#SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
  3861. <param name="items"></param>
  3862. <returns></returns>
  3863. </member>
  3864. <member name="T:System.Collections.Immutable.ImmutableSortedDictionary">
  3865. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableSortedDictionary`2"></see> class.
  3866. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3867. </member>
  3868. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2">
  3869. <summary>Creates an empty immutable sorted dictionary.</summary>
  3870. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3871. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3872. <returns>An empty immutable sorted dictionary.</returns>
  3873. </member>
  3874. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0})">
  3875. <summary>Creates an empty immutable sorted dictionary that uses the specified key comparer.</summary>
  3876. <param name="keyComparer">The implementation to use to determine the equality of keys in the dictionary.</param>
  3877. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3878. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3879. <returns>An empty immutable sorted dictionary.</returns>
  3880. </member>
  3881. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  3882. <summary>Creates an empty immutable sorted dictionary that uses the specified key and value comparers.</summary>
  3883. <param name="keyComparer">The implementation to use to determine the equality of keys in the dictionary.</param>
  3884. <param name="valueComparer">The implementation to use to determine the equality of values in the dictonary.</param>
  3885. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3886. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3887. <returns>An empty immutable sorted dictionary.</returns>
  3888. </member>
  3889. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2">
  3890. <summary>Creates a new immutable sorted dictionary builder.</summary>
  3891. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3892. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3893. <returns>The immutable collection builder.</returns>
  3894. </member>
  3895. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0})">
  3896. <summary>Creates a new immutable sorted dictionary builder.</summary>
  3897. <param name="keyComparer">The key comparer.</param>
  3898. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3899. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3900. <returns>The immutable collection builder.</returns>
  3901. </member>
  3902. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  3903. <summary>Creates a new immutable sorted dictionary builder.</summary>
  3904. <param name="keyComparer">The key comparer.</param>
  3905. <param name="valueComparer">The value comparer.</param>
  3906. <typeparam name="TKey">The type of keys stored by the dictionary.</typeparam>
  3907. <typeparam name="TValue">The type of values stored by the dictionary.</typeparam>
  3908. <returns>The immutable collection builder.</returns>
  3909. </member>
  3910. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  3911. <summary>Creates an immutable sorted dictionary that contains the specified items and uses the default comparer.</summary>
  3912. <param name="items">The items to add to the sorted dictionary before it’s immutable.</param>
  3913. <typeparam name="TKey">The type of keys stored in the dictionary.</typeparam>
  3914. <typeparam name="TValue">The type of values stored in the dictionary.</typeparam>
  3915. <returns>An immutable sorted dictionary that contains the specified items.</returns>
  3916. </member>
  3917. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  3918. <summary>Creates a new immutable sorted dictionary from the specified range of items with the specified key comparer.</summary>
  3919. <param name="keyComparer">The comparer implementation to use to evaluate keys for equality and sorting.</param>
  3920. <param name="items">The items to add to the sorted dictionary.</param>
  3921. <typeparam name="TKey">The type of keys stored in the dictionary.</typeparam>
  3922. <typeparam name="TValue">The type of values stored in the dictionary.</typeparam>
  3923. <returns>The new immutable sorted dictionary that contains the specified items and uses the specified key comparer.</returns>
  3924. </member>
  3925. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  3926. <summary>Creates a new immutable sorted dictionary from the specified range of items with the specified key and value comparers.</summary>
  3927. <param name="keyComparer">The comparer implementation to use to compare keys for equality and sorting.</param>
  3928. <param name="valueComparer">The comparer implementation to use to compare values for equality and sorting.</param>
  3929. <param name="items">The items to add to the sorted dictionary before it’s immutable.</param>
  3930. <typeparam name="TKey">The type of keys stored in the dictionary.</typeparam>
  3931. <typeparam name="TValue">The type of values stored in the dictionary.</typeparam>
  3932. <returns>An immutable sorted dictionary that contains the specified items and uses the specified comparers.</returns>
  3933. </member>
  3934. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
  3935. <summary>Enumerates a sequence of key/value pairs and produces an immutable sorted dictionary of its contents.</summary>
  3936. <param name="source">The sequence of key/value pairs to enumerate.</param>
  3937. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  3938. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  3939. <returns>An immutable sorted dictionary that contains the key/value pairs in the specified sequence.</returns>
  3940. </member>
  3941. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0})">
  3942. <summary>Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key comparer.</summary>
  3943. <param name="source">The sequence of key/value pairs to enumerate.</param>
  3944. <param name="keyComparer">The key comparer to use when building the immutable dictionary.</param>
  3945. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  3946. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  3947. <returns>An immutable sorted dictionary that contains the key/value pairs in the specified sequence.</returns>
  3948. </member>
  3949. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1})">
  3950. <summary>Enumerates a sequence of key/value pairs and produces an immutable sorted dictionary of its contents by using the specified key and value comparers.</summary>
  3951. <param name="source">The sequence of key/value pairs to enumerate.</param>
  3952. <param name="keyComparer">The key comparer to use when building the immutable dictionary.</param>
  3953. <param name="valueComparer">The value comparer to use for the immutable dictionary.</param>
  3954. <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
  3955. <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
  3956. <returns>An immutable sorted dictionary that contains the key/value pairs in the specified sequence.</returns>
  3957. </member>
  3958. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})">
  3959. <summary>Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents.</summary>
  3960. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  3961. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  3962. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  3963. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  3964. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  3965. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  3966. <returns>An immutable sorted dictionary that contains the items in the specified sequence.</returns>
  3967. </member>
  3968. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1})">
  3969. <summary>Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key comparer.</summary>
  3970. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  3971. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  3972. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  3973. <param name="keyComparer">The key comparer to use for the dictionary.</param>
  3974. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  3975. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  3976. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  3977. <returns>An immutable dictionary that contains the items in the specified sequence.</returns>
  3978. </member>
  3979. <member name="M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1},System.Collections.Generic.IEqualityComparer{``2})">
  3980. <summary>Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key and value comparers.</summary>
  3981. <param name="source">The sequence to enumerate to generate the dictionary.</param>
  3982. <param name="keySelector">The function that will produce the key for the dictionary from each sequence element.</param>
  3983. <param name="elementSelector">The function that will produce the value for the dictionary from each sequence element.</param>
  3984. <param name="keyComparer">The key comparer to use for the dictionary.</param>
  3985. <param name="valueComparer">The value comparer to use for the dictionary.</param>
  3986. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  3987. <typeparam name="TKey">The type of the keys in the resulting dictionary.</typeparam>
  3988. <typeparam name="TValue">The type of the values in the resulting dictionary.</typeparam>
  3989. <returns>An immutable sorted dictionary that contains the items in the specified sequence.</returns>
  3990. </member>
  3991. <member name="T:System.Collections.Immutable.ImmutableSortedSet`1.Builder">
  3992. <summary>Represents a sorted set that enables changes with little or no memory allocations, and efficiently manipulates or builds immutable sorted sets.
  3993. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  3994. <typeparam name="T"></typeparam>
  3995. </member>
  3996. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Add(`0)">
  3997. <summary>Adds an element to the current set and returns a value to indicate whether the element was successfully added.</summary>
  3998. <param name="item">The element to add to the set.</param>
  3999. <returns>true if the element is added to the set; false if the element is already in the set</returns>
  4000. </member>
  4001. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Clear">
  4002. <summary>Removes all elements from this set.</summary>
  4003. </member>
  4004. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Contains(`0)">
  4005. <summary>Determines whether the set contains the specified object.</summary>
  4006. <param name="item">The object to locate in the set.</param>
  4007. <returns>true if <paramref name="item">item</paramref> is found in the set; otherwise, false.</returns>
  4008. </member>
  4009. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Count">
  4010. <summary>Gets the number of elements in the immutable sorted set.</summary>
  4011. <returns>The number of elements in this set.</returns>
  4012. </member>
  4013. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  4014. <summary>Removes the specified set of items from the current set.</summary>
  4015. <param name="other">The collection of items to remove from the set.</param>
  4016. </member>
  4017. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.GetEnumerator">
  4018. <summary>Returns an enumerator that iterates through the set.</summary>
  4019. <returns>A enumerator that can be used to iterate through the set.</returns>
  4020. </member>
  4021. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  4022. <summary>Modifies the current set so that it contains only elements that are also in a specified collection.</summary>
  4023. <param name="other">The collection to compare to the current set.</param>
  4024. </member>
  4025. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  4026. <summary>Determines whether the current set is a proper (strict) subset of a specified collection.</summary>
  4027. <param name="other">The collection to compare to the current set.</param>
  4028. <returns>true if the current set is a proper subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4029. </member>
  4030. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  4031. <summary>Determines whether the current set is a proper (strict) superset of a specified collection.</summary>
  4032. <param name="other">The collection to compare to the current set.</param>
  4033. <returns>true if the current set is a proper superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4034. </member>
  4035. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  4036. <summary>Determines whether the current set is a subset of a specified collection.</summary>
  4037. <param name="other">The collection is compare to the current set.</param>
  4038. <returns>true if the current set is a subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4039. </member>
  4040. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  4041. <summary>Determines whether the current set is a superset of a specified collection.</summary>
  4042. <param name="other">The collection to compare to the current set.</param>
  4043. <returns>true if the current set is a superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4044. </member>
  4045. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Item(System.Int32)">
  4046. <summary>Gets the element of the set at the given index.</summary>
  4047. <param name="index">The 0-based index of the element in the set to return.</param>
  4048. <returns>The element at the given position.</returns>
  4049. </member>
  4050. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.KeyComparer">
  4051. <summary>Gets or sets the object that is used to determine equality for the values in the immutable sorted set.</summary>
  4052. <returns>The comparer that is used to determine equality for the values in the set.</returns>
  4053. </member>
  4054. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Max">
  4055. <summary>Gets the maximum value in the immutable sorted set, as defined by the comparer.</summary>
  4056. <returns>The maximum value in the set.</returns>
  4057. </member>
  4058. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Min">
  4059. <summary>Gets the minimum value in the immutable sorted set, as defined by the comparer.</summary>
  4060. <returns>The minimum value in the set.</returns>
  4061. </member>
  4062. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  4063. <summary>Determines whether the current set overlaps with the specified collection.</summary>
  4064. <param name="other">The collection to compare to the current set.</param>
  4065. <returns>true if the current set and <paramref name="other">other</paramref> share at least one common element; otherwise, false.</returns>
  4066. </member>
  4067. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Remove(`0)">
  4068. <summary>Removes the first occurrence of the specified object from the set.</summary>
  4069. <param name="item">The object to remove from the set.</param>
  4070. <returns>true if <paramref name="item">item</paramref> was removed from the set; false if <paramref name="item">item</paramref> was not found in the set.</returns>
  4071. </member>
  4072. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Reverse">
  4073. <summary>Returns an enumerator that iterates over the immutable sorted set in reverse order.</summary>
  4074. <returns>An enumerator that iterates over the set in reverse order.</returns>
  4075. </member>
  4076. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  4077. <summary>Determines whether the current set and the specified collection contain the same elements.</summary>
  4078. <param name="other">The collection to compare to the current set.</param>
  4079. <returns>true if the current set is equal to <paramref name="other">other</paramref>; otherwise, false.</returns>
  4080. </member>
  4081. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  4082. <summary>Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  4083. <param name="other">The collection to compare to the current set.</param>
  4084. </member>
  4085. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ToImmutable">
  4086. <summary>Creates an immutable sorted set based on the contents of this instance.</summary>
  4087. <returns>An immutable set.</returns>
  4088. </member>
  4089. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0})">
  4090. <summary>Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.</summary>
  4091. <param name="other">The collection to compare to the current state.</param>
  4092. </member>
  4093. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#Generic#ICollection{T}#Add(`0)">
  4094. <summary>Adds an element to the current set and returns a value to indicate whether the element was successfully added.</summary>
  4095. <param name="item">The element to add to the set.</param>
  4096. </member>
  4097. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#Generic#ICollection{T}#CopyTo(`0[],System.Int32)">
  4098. <summary>Copies the elements of the collection to an array, starting at a particular array index.</summary>
  4099. <param name="array">The one-dimensional array that is the destination of the elements copied from collection. The array must have zero-based indexing.</param>
  4100. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  4101. </member>
  4102. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#Generic#ICollection{T}#IsReadOnly">
  4103. <summary>Gets a value indicating whether this instance is read-only.</summary>
  4104. <returns>Always false.</returns>
  4105. </member>
  4106. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  4107. <summary>Returns an enumerator that iterates through the collection.</summary>
  4108. <returns>A enumerator that can be used to iterate through the collection.</returns>
  4109. </member>
  4110. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  4111. <summary>Copies the elements of the set to an array, starting at a particular array index.</summary>
  4112. <param name="array">The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.</param>
  4113. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  4114. </member>
  4115. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#ICollection#IsSynchronized">
  4116. <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
  4117. <returns>true if access to the <see cref="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
  4118. </member>
  4119. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#ICollection#SyncRoot">
  4120. <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
  4121. <returns>An object that can be used to synchronize access to the <see cref="System.Collections.ICollection"></see>.</returns>
  4122. </member>
  4123. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.System#Collections#IEnumerable#GetEnumerator">
  4124. <summary>Returns an enumerator that iterates through the collection.</summary>
  4125. <returns>A enumerator that can be used to iterate through the collection.</returns>
  4126. </member>
  4127. <member name="T:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator">
  4128. <summary>Enumerates the contents of a binary tree.
  4129. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4130. <typeparam name="T"></typeparam>
  4131. </member>
  4132. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Current">
  4133. <summary>Gets the element at the current position of the enumerator.
  4134. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4135. <returns>The element at the current position of the enumerator.</returns>
  4136. </member>
  4137. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Dispose">
  4138. <summary>Releases the resources used by the current instance of the <see cref="T:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator"></see> class.
  4139. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4140. </member>
  4141. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.MoveNext">
  4142. <summary>Advances the enumerator to the next element of the immutable sorted set.
  4143. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4144. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the sorted set.</returns>
  4145. </member>
  4146. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Reset">
  4147. <summary>Sets the enumerator to its initial position, which is before the first element in the immutable sorted set.
  4148. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4149. </member>
  4150. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.System#Collections#IEnumerator#Current">
  4151. <summary>The current element.</summary>
  4152. <returns></returns>
  4153. </member>
  4154. <member name="T:System.Collections.Immutable.ImmutableSortedSet`1">
  4155. <summary>Represents an immutable sorted set implementation.
  4156. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4157. <typeparam name="T">The type of elements in the set.</typeparam>
  4158. </member>
  4159. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Add(`0)">
  4160. <summary>Adds the specified value to this immutable sorted set.</summary>
  4161. <param name="value">The value to add.</param>
  4162. <returns>A new set with the element added, or this set if the element is already in this set.</returns>
  4163. </member>
  4164. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Clear">
  4165. <summary>Removes all elements from the immutable sorted set.</summary>
  4166. <returns>An empty set with the elements removed.</returns>
  4167. </member>
  4168. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Contains(`0)">
  4169. <summary>Determines whether this immutable sorted set contains the specified value.</summary>
  4170. <param name="value">The value to check for.</param>
  4171. <returns>true if the set contains the specified value; otherwise, false.</returns>
  4172. </member>
  4173. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Count">
  4174. <summary>Gets the number of elements in the immutable sorted set.</summary>
  4175. <returns>The number of elements in the immutable sorted set.</returns>
  4176. </member>
  4177. <member name="F:System.Collections.Immutable.ImmutableSortedSet`1.Empty">
  4178. <summary>Gets an empty immutable sorted set.</summary>
  4179. <returns></returns>
  4180. </member>
  4181. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Except(System.Collections.Generic.IEnumerable{`0})">
  4182. <summary>Removes a specified set of items from this immutable sorted set.</summary>
  4183. <param name="other">The items to remove from this set.</param>
  4184. <returns>A new set with the items removed; or the original set if none of the items were in the set.</returns>
  4185. </member>
  4186. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.GetEnumerator">
  4187. <summary>Returns an enumerator that iterates through the immutable sorted set.</summary>
  4188. <returns>An enumerator that can be used to iterate through the set.</returns>
  4189. </member>
  4190. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.IndexOf(`0)">
  4191. <summary>Gets the position within this immutable sorted set that the specified value appears in.</summary>
  4192. <param name="item">The value whose position is being sought.</param>
  4193. <returns>The index of the specified <paramref name="item">item</paramref> in the sorted set, if <paramref name="item">item</paramref> is found. If <paramref name="item">item</paramref> is not found and is less than one or more elements in this set, this method returns a negative number that is the bitwise complement of the index of the first element that is larger than value. If <paramref name="item">item</paramref> is not found and is greater than any of the elements in the set, this method returns a negative number that is the bitwise complement of the index of the last element plus 1.</returns>
  4194. </member>
  4195. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Intersect(System.Collections.Generic.IEnumerable{`0})">
  4196. <summary>Creates an immutable sorted set that contains elements that exist both in this set and in the specified set.</summary>
  4197. <param name="other">The set to intersect with this one.</param>
  4198. <returns>A new immutable sorted set that contains any elements that exist in both sets.</returns>
  4199. </member>
  4200. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.IsEmpty">
  4201. <summary>Gets a value that indicates whether this immutable sorted set is empty.</summary>
  4202. <returns>true if this set is empty; otherwise, false.</returns>
  4203. </member>
  4204. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  4205. <summary>Determines whether the current immutable sorted set is a proper (strict) subset of the specified collection.</summary>
  4206. <param name="other">The collection to compare to the current set.</param>
  4207. <returns>true if the current set is a proper subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4208. </member>
  4209. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  4210. <summary>Determines whether the current immutable sorted set is a proper superset of a specified collection.</summary>
  4211. <param name="other">The collection to compare to the current set.</param>
  4212. <returns>true if the current set is a proper superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4213. </member>
  4214. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  4215. <summary>Determines whether the current immutable sorted set is a subset of a specified collection.</summary>
  4216. <param name="other">The collection to compare to the current set.</param>
  4217. <returns>true if the current set is a subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4218. </member>
  4219. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  4220. <summary>Determines whether the current immutable sorted set is a superset of a specified collection.</summary>
  4221. <param name="other">The collection to compare to the current set.</param>
  4222. <returns>true if the current set is a superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
  4223. </member>
  4224. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Item(System.Int32)">
  4225. <summary>Gets the element of the immutable sorted set at the given index.</summary>
  4226. <param name="index">The index of the element to retrieve from the sorted set.</param>
  4227. <returns>The element at the given index.</returns>
  4228. </member>
  4229. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.KeyComparer">
  4230. <summary>Gets the comparer used to sort keys in the immutable sorted set.</summary>
  4231. <returns>The comparer used to sort keys.</returns>
  4232. </member>
  4233. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Max">
  4234. <summary>Gets the maximum value in the immutable sorted set, as defined by the comparer.</summary>
  4235. <returns>The maximum value in the set.</returns>
  4236. </member>
  4237. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.Min">
  4238. <summary>Gets the minimum value in the immutable sorted set, as defined by the comparer.</summary>
  4239. <returns>The minimum value in the set.</returns>
  4240. </member>
  4241. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  4242. <summary>Determines whether the current immutable sorted set and a specified collection share common elements.</summary>
  4243. <param name="other">The collection to compare to the current set.</param>
  4244. <returns>true if the current set and <paramref name="other">other</paramref> share at least one common element; otherwise, false.</returns>
  4245. </member>
  4246. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Remove(`0)">
  4247. <summary>Removes the specified value from this immutable sorted set.</summary>
  4248. <param name="value">The element to remove.</param>
  4249. <returns>A new immutable sorted set with the element removed, or this set if the element was not found in the set.</returns>
  4250. </member>
  4251. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Reverse">
  4252. <summary>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1"></see> that iterates over this immutable sorted set in reverse order.</summary>
  4253. <returns>An enumerator that iterates over the immutable sorted set in reverse order.</returns>
  4254. </member>
  4255. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  4256. <summary>Determines whether the current immutable sorted set and the specified collection contain the same elements.</summary>
  4257. <param name="other">The collection to compare to the current set.</param>
  4258. <returns>true if the sets are equal; otherwise, false.</returns>
  4259. </member>
  4260. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
  4261. <summary>Creates an immutable sorted set that contains elements that exist either in this set or in a given sequence, but not both.</summary>
  4262. <param name="other">The other sequence of items.</param>
  4263. <returns>The new immutable sorted set.</returns>
  4264. </member>
  4265. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.ToBuilder">
  4266. <summary>Creates a collection that has the same contents as this immutable sorted set that can be efficiently manipulated by using standard mutable interfaces.</summary>
  4267. <returns>The sorted set builder.</returns>
  4268. </member>
  4269. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.TryGetValue(`0,`0@)">
  4270. <summary>Searches the set for a given value and returns the equal value it finds, if any.</summary>
  4271. <param name="equalValue">The value to search for.</param>
  4272. <param name="actualValue">The value from the set that the search found, or the original value if the search yielded no match.</param>
  4273. <returns>A value indicating whether the search was successful.</returns>
  4274. </member>
  4275. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.Union(System.Collections.Generic.IEnumerable{`0})">
  4276. <summary>Adds a given set of items to this immutable sorted set.</summary>
  4277. <param name="other">The items to add.</param>
  4278. <returns>The new set with the items added; or the original set if all the items were already in the set.</returns>
  4279. </member>
  4280. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.WithComparer(System.Collections.Generic.IComparer{`0})">
  4281. <summary>Returns the immutable sorted set that has the specified key comparer.</summary>
  4282. <param name="comparer">The comparer to check for.</param>
  4283. <returns>The immutable sorted set that has the specified key comparer.</returns>
  4284. </member>
  4285. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  4286. <summary>Adds the specified value to the collection.</summary>
  4287. <param name="item">The value to add.</param>
  4288. </member>
  4289. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ICollection{T}#Clear">
  4290. <summary>Removes all the items from the collection.</summary>
  4291. </member>
  4292. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ICollection{T}#CopyTo(`0[],System.Int32)">
  4293. <summary>Copies the elements of the collection to an array, starting at a particular array index.</summary>
  4294. <param name="array">The one-dimensional array that is the destination of the elements copied from collection. The array must have zero-based indexing.</param>
  4295. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  4296. </member>
  4297. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  4298. <summary>See the <see cref="T:System.Collections.Generic.ICollection`1"></see> interface.</summary>
  4299. <returns></returns>
  4300. </member>
  4301. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
  4302. <summary>Removes the first occurrence of a specific object from the collection.</summary>
  4303. <param name="item">The object to remove from the collection.</param>
  4304. <returns>true if <paramref name="item">item</paramref> was successfully removed from the collection; otherwise, false.</returns>
  4305. </member>
  4306. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  4307. <summary>Returns an enumerator that iterates through the collection.</summary>
  4308. <returns>An enumerator that can be used to iterate through the collection.</returns>
  4309. </member>
  4310. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)">
  4311. <summary>Inserts an item in the set at the specified index..</summary>
  4312. <param name="index">The zero-based index at which item should be inserted.</param>
  4313. <param name="item">The object to insert into the set.</param>
  4314. </member>
  4315. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#IList{T}#Item(System.Int32)">
  4316. <summary>See the <see cref="T:System.Collections.Generic.IList`1"></see> interface.</summary>
  4317. <param name="index"></param>
  4318. <returns></returns>
  4319. </member>
  4320. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)">
  4321. <summary>Removes the item at the specified index.</summary>
  4322. <param name="index">The zero-based index of the item to remove.</param>
  4323. </member>
  4324. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ISet{T}#Add(`0)">
  4325. <summary>Adds an element to the current set and returns a value to indicate if the element was successfully added.</summary>
  4326. <param name="item">The element to add to the set.</param>
  4327. <returns>true if the element is added to the set; false if the element is already in the set.</returns>
  4328. </member>
  4329. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ISet{T}#ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  4330. <summary>Removes all elements in the specified collection from the current set.</summary>
  4331. <param name="other">The collection of items to remove from the set.</param>
  4332. </member>
  4333. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ISet{T}#IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  4334. <summary>Modifies the current set so that it contains only elements that are also in a specified collection</summary>
  4335. <param name="other">The collection to compare to the current set.</param>
  4336. </member>
  4337. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ISet{T}#SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  4338. <summary>Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  4339. <param name="other">The collection to compare to the current set.</param>
  4340. </member>
  4341. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Generic#ISet{T}#UnionWith(System.Collections.Generic.IEnumerable{`0})">
  4342. <summary>Modifies the current set so that it contains all elements that are present in either the current set or the specified collection.</summary>
  4343. <param name="other">The collection to compare to the current set.</param>
  4344. </member>
  4345. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  4346. <summary>Copies the elements of the set to an array, starting at a particular array index.</summary>
  4347. <param name="array">The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.</param>
  4348. <param name="index">The zero-based index in array at which copying begins.</param>
  4349. </member>
  4350. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#ICollection#IsSynchronized">
  4351. <summary>See the <see cref="T:System.Collections.ICollection"></see> interface.</summary>
  4352. <returns></returns>
  4353. </member>
  4354. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#ICollection#SyncRoot">
  4355. <summary>See <see cref="T:System.Collections.ICollection"></see>.</summary>
  4356. <returns></returns>
  4357. </member>
  4358. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IEnumerable#GetEnumerator">
  4359. <summary>Returns an enumerator that iterates through a collection.</summary>
  4360. <returns>An enumerator object that can be used to iterate through the collection.</returns>
  4361. </member>
  4362. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Add(System.Object)">
  4363. <summary>Adds an item to the set.</summary>
  4364. <param name="value">The object to add to the set.</param>
  4365. <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
  4366. <exception cref="T:System.NotSupportedException">The set is read-only or has a fixed size.</exception>
  4367. </member>
  4368. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Clear">
  4369. <summary>Removes all items from the set.</summary>
  4370. </member>
  4371. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Contains(System.Object)">
  4372. <summary>Determines whether the set contains a specific value.</summary>
  4373. <param name="value">The object to locate in the set.</param>
  4374. <returns>true if the object is found in the set; otherwise, false.</returns>
  4375. </member>
  4376. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#IndexOf(System.Object)">
  4377. <summary>Determines the index of a specific item in the set.</summary>
  4378. <param name="value">The object to locate in the set.</param>
  4379. <returns>The index of <paramref name="value">value</paramref> if found in the list; otherwise, -1.</returns>
  4380. </member>
  4381. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Insert(System.Int32,System.Object)">
  4382. <summary>Inserts an item into the set at the specified index.</summary>
  4383. <param name="index">The zero-based index at which value should be inserted.</param>
  4384. <param name="value">The object to insert into the set.</param>
  4385. <exception cref="T:System.NotSupportedException">The set is read-only or has a fixed size.</exception>
  4386. </member>
  4387. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#IsFixedSize">
  4388. <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
  4389. <returns>true if the <see cref="System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
  4390. </member>
  4391. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#IsReadOnly">
  4392. <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
  4393. <returns>true if the <see cref="System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false.</returns>
  4394. </member>
  4395. <member name="P:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Item(System.Int32)">
  4396. <summary>Gets or sets the <see cref="T:System.Object"></see> at the specified index.</summary>
  4397. <param name="index">The index.</param>
  4398. <returns>The <see cref="System.Object"></see>.</returns>
  4399. <exception cref="T:System.NotSupportedException"></exception>
  4400. </member>
  4401. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#Remove(System.Object)">
  4402. <summary>Removes the first occurrence of a specific object from the set.</summary>
  4403. <param name="value">The object to remove from the set.</param>
  4404. <exception cref="T:System.NotSupportedException">The set is read-only or has a fixed size.</exception>
  4405. </member>
  4406. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#IList#RemoveAt(System.Int32)">
  4407. <summary>Removes the item at the specified index of the set.</summary>
  4408. <param name="index">The zero-based index of the item to remove.</param>
  4409. <exception cref="T:System.NotSupportedException">The set is read-only or has a fixed size.</exception>
  4410. </member>
  4411. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Add(`0)">
  4412. <summary>Adds the specified element to this immutable set.</summary>
  4413. <param name="value">The element to add.</param>
  4414. <returns>A new set with the element added, or this set if the element is already in the set.</returns>
  4415. </member>
  4416. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Clear">
  4417. <summary>Retrieves an empty immutable set that has the same sorting and ordering semantics as this instance.</summary>
  4418. <returns>An empty set that has the same sorting and ordering semantics as this instance.</returns>
  4419. </member>
  4420. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Except(System.Collections.Generic.IEnumerable{`0})">
  4421. <summary>Removes the elements in the specified collection from the current immutable set.</summary>
  4422. <param name="other">The items to remove from this set.</param>
  4423. <returns>The new set with the items removed; or the original set if none of the items were in the set.</returns>
  4424. </member>
  4425. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Intersect(System.Collections.Generic.IEnumerable{`0})">
  4426. <summary>Creates an immutable set that contains elements that exist in both this set and the specified set.</summary>
  4427. <param name="other">The collection to compare to the current set.</param>
  4428. <returns>A new immutable set that contains any elements that exist in both sets.</returns>
  4429. </member>
  4430. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Remove(`0)">
  4431. <summary>Removes the specified element from this immutable set.</summary>
  4432. <param name="value">The element to remove.</param>
  4433. <returns>A new set with the specified element removed, or the current set if the element cannot be found in the set.</returns>
  4434. </member>
  4435. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#SymmetricExcept(System.Collections.Generic.IEnumerable{`0})">
  4436. <summary>Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.</summary>
  4437. <param name="other">The collection to compare to the current set.</param>
  4438. <returns>A new set that contains the elements that are present only in the current set or in the specified collection, but not both.</returns>
  4439. </member>
  4440. <member name="M:System.Collections.Immutable.ImmutableSortedSet`1.System#Collections#Immutable#IImmutableSet{T}#Union(System.Collections.Generic.IEnumerable{`0})">
  4441. <summary>Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.</summary>
  4442. <param name="other">The collection to add elements from.</param>
  4443. <returns>A new immutable set with the items added; or the original set if all the items were already in the set.</returns>
  4444. </member>
  4445. <member name="T:System.Collections.Immutable.ImmutableSortedSet">
  4446. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableSortedSet`1"></see> class.
  4447. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4448. </member>
  4449. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1">
  4450. <summary>Creates an empty immutable sorted set.</summary>
  4451. <typeparam name="T">The type of items to be stored in the immutable set.</typeparam>
  4452. <returns>An empty immutable sorted set.</returns>
  4453. </member>
  4454. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0})">
  4455. <summary>Creates an empty immutable sorted set that uses the specified comparer.</summary>
  4456. <param name="comparer">The implementation to use when comparing items in the set.</param>
  4457. <typeparam name="T">The type of items in the immutable set.</typeparam>
  4458. <returns>An empty immutable set.</returns>
  4459. </member>
  4460. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0)">
  4461. <summary>Creates a new immutable sorted set that contains the specified item.</summary>
  4462. <param name="item">The item to prepopulate the set with.</param>
  4463. <typeparam name="T">The type of items in the immutable set.</typeparam>
  4464. <returns>A new immutable set that contains the specified item.</returns>
  4465. </member>
  4466. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0[])">
  4467. <summary>Creates a new immutable sorted set that contains the specified array of items.</summary>
  4468. <param name="items">An array that contains the items to prepopulate the set with.</param>
  4469. <typeparam name="T">The type of items in the immutable set.</typeparam>
  4470. <returns>A new immutable set that contains the specified items.</returns>
  4471. </member>
  4472. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0)">
  4473. <summary>Creates a new immutable sorted set that contains the specified item and uses the specified comparer.</summary>
  4474. <param name="comparer">The implementation to use when comparing items in the set.</param>
  4475. <param name="item">The item to prepopulate the set with.</param>
  4476. <typeparam name="T">The type of items stored in the immutable set.</typeparam>
  4477. <returns>A new immutable set that contains the specified item.</returns>
  4478. </member>
  4479. <member name="M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0[])">
  4480. <summary>Creates a new immutable sorted set that contains the specified array of items and uses the specified comparer.</summary>
  4481. <param name="comparer">The implementation to use when comparing items in the set.</param>
  4482. <param name="items">An array that contains the items to prepopulate the set with.</param>
  4483. <typeparam name="T">The type of items in the immutable set.</typeparam>
  4484. <returns>A new immutable set that contains the specified items.</returns>
  4485. </member>
  4486. <member name="M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1">
  4487. <summary>Returns a collection that can be used to build an immutable sorted set.</summary>
  4488. <typeparam name="T">The type of items stored by the collection.</typeparam>
  4489. <returns>The immutable collection builder.</returns>
  4490. </member>
  4491. <member name="M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1(System.Collections.Generic.IComparer{``0})">
  4492. <summary>Returns a collection that can be used to build an immutable sorted set.</summary>
  4493. <param name="comparer">The comparer used to compare items in the set for equality.</param>
  4494. <typeparam name="T">The type of items stored by the collection.</typeparam>
  4495. <returns>The immutable collection.</returns>
  4496. </member>
  4497. <member name="M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  4498. <summary>Creates a new immutable collection that contains the specified items.</summary>
  4499. <param name="items">The items to add to the set with before it’s immutable.</param>
  4500. <typeparam name="T">The type of items stored by the collection.</typeparam>
  4501. <returns>The new immutable set that contains the specified items.</returns>
  4502. </member>
  4503. <member name="M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{``0})">
  4504. <summary>Creates a new immutable collection that contains the specified items.</summary>
  4505. <param name="comparer">The comparer to use to compare elements in this set.</param>
  4506. <param name="items">The items to add to the set before it’s immutable.</param>
  4507. <typeparam name="T">The type of items stored by the collection.</typeparam>
  4508. <returns>The new immutable set that contains the specified items.</returns>
  4509. </member>
  4510. <member name="M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0})">
  4511. <summary>Enumerates a sequence and produces an immutable sorted set of its contents.</summary>
  4512. <param name="source">The sequence to enumerate.</param>
  4513. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  4514. <returns>An immutable sorted set that contains the items in the specified sequence.</returns>
  4515. </member>
  4516. <member name="M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
  4517. <summary>Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer.</summary>
  4518. <param name="source">The sequence to enumerate.</param>
  4519. <param name="comparer">The comparer to use for initializing and adding members to the sorted set.</param>
  4520. <typeparam name="TSource">The type of the elements in the sequence.</typeparam>
  4521. <returns>An immutable sorted set that contains the items in the specified sequence.</returns>
  4522. </member>
  4523. <member name="T:System.Collections.Immutable.ImmutableStack`1.Enumerator">
  4524. <summary>Enumerates the contents of an immutable stack without allocating any memory.
  4525. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4526. <typeparam name="T"></typeparam>
  4527. </member>
  4528. <member name="P:System.Collections.Immutable.ImmutableStack`1.Enumerator.Current">
  4529. <summary>Gets the element at the current position of the enumerator.</summary>
  4530. <returns>The element at the current position of the enumerator.</returns>
  4531. </member>
  4532. <member name="M:System.Collections.Immutable.ImmutableStack`1.Enumerator.MoveNext">
  4533. <summary>Advances the enumerator to the next element of the immutable stack.</summary>
  4534. <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the stack.</returns>
  4535. </member>
  4536. <member name="T:System.Collections.Immutable.ImmutableStack`1">
  4537. <summary>Represents an immutable stack.
  4538. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4539. <typeparam name="T">The type of element on the stack.</typeparam>
  4540. </member>
  4541. <member name="M:System.Collections.Immutable.ImmutableStack`1.Clear">
  4542. <summary>Removes all objects from the immutable stack.</summary>
  4543. <returns>An empty immutable stack.</returns>
  4544. </member>
  4545. <member name="P:System.Collections.Immutable.ImmutableStack`1.Empty">
  4546. <summary>Gets an empty immutable stack.</summary>
  4547. <returns>An empty immutable stack.</returns>
  4548. </member>
  4549. <member name="M:System.Collections.Immutable.ImmutableStack`1.GetEnumerator">
  4550. <summary>Returns an enumerator that iterates through the immutable stack.</summary>
  4551. <returns>An enumerator that can be used to iterate through the stack.</returns>
  4552. </member>
  4553. <member name="P:System.Collections.Immutable.ImmutableStack`1.IsEmpty">
  4554. <summary>Gets a value that indicates whether this instance of the immutable stack is empty.</summary>
  4555. <returns>true if this instance is empty; otherwise, false.</returns>
  4556. </member>
  4557. <member name="M:System.Collections.Immutable.ImmutableStack`1.Peek">
  4558. <summary>Returns the object at the top of the stack without removing it.</summary>
  4559. <returns>The object at the top of the stack.</returns>
  4560. </member>
  4561. <member name="M:System.Collections.Immutable.ImmutableStack`1.Pop">
  4562. <summary>Removes the element at the top of the immutable stack and returns the stack after the removal.</summary>
  4563. <returns>A stack; never null.</returns>
  4564. </member>
  4565. <member name="M:System.Collections.Immutable.ImmutableStack`1.Pop(`0@)">
  4566. <summary>Removes the specified element from the immutable stack and returns the stack after the removal.</summary>
  4567. <param name="value">The value to remove from the stack.</param>
  4568. <returns>A stack; never null.</returns>
  4569. </member>
  4570. <member name="M:System.Collections.Immutable.ImmutableStack`1.Push(`0)">
  4571. <summary>Inserts an object at the top of the immutable stack and returns the new stack.</summary>
  4572. <param name="value">The object to push onto the stack.</param>
  4573. <returns>The new stack.</returns>
  4574. </member>
  4575. <member name="M:System.Collections.Immutable.ImmutableStack`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  4576. <summary>Returns an enumerator that iterates through the collection.</summary>
  4577. <returns>An enumerator that can be used to iterate through the collection.</returns>
  4578. </member>
  4579. <member name="M:System.Collections.Immutable.ImmutableStack`1.System#Collections#IEnumerable#GetEnumerator">
  4580. <summary>Returns an enumerator that iterates through a collection.</summary>
  4581. <returns>An <see cref="System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.</returns>
  4582. </member>
  4583. <member name="M:System.Collections.Immutable.ImmutableStack`1.System#Collections#Immutable#IImmutableStack{T}#Clear">
  4584. <summary>Removes all elements from the immutable stack.</summary>
  4585. <returns>The empty immutable stack.</returns>
  4586. </member>
  4587. <member name="M:System.Collections.Immutable.ImmutableStack`1.System#Collections#Immutable#IImmutableStack{T}#Pop">
  4588. <summary>Removes the element at the top of the immutable stack and returns the new stack.</summary>
  4589. <returns>The new stack; never null.</returns>
  4590. </member>
  4591. <member name="M:System.Collections.Immutable.ImmutableStack`1.System#Collections#Immutable#IImmutableStack{T}#Push(`0)">
  4592. <summary>Inserts an element at the top of the immutable stack and returns the new stack.</summary>
  4593. <param name="value">The element to push onto the stack.</param>
  4594. <returns>The new stack.</returns>
  4595. </member>
  4596. <member name="T:System.Collections.Immutable.ImmutableStack">
  4597. <summary>Provides a set of initialization methods for instances of the <see cref="T:System.Collections.Immutable.ImmutableStack`1"></see> class.
  4598. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4599. </member>
  4600. <member name="M:System.Collections.Immutable.ImmutableStack.Create``1">
  4601. <summary>Creates an empty immutable stack.</summary>
  4602. <typeparam name="T">The type of items to be stored in the immutable stack.</typeparam>
  4603. <returns>An empty immutable stack.</returns>
  4604. </member>
  4605. <member name="M:System.Collections.Immutable.ImmutableStack.Create``1(``0)">
  4606. <summary>Creates a new immutable stack that contains the specified item.</summary>
  4607. <param name="item">The item to prepopulate the stack with.</param>
  4608. <typeparam name="T">The type of items in the immutable stack.</typeparam>
  4609. <returns>A new immutable collection that contains the specified item.</returns>
  4610. </member>
  4611. <member name="M:System.Collections.Immutable.ImmutableStack.Create``1(``0[])">
  4612. <summary>Creates a new immutable stack that contains the specified array of items.</summary>
  4613. <param name="items">An array that contains the items to prepopulate the stack with.</param>
  4614. <typeparam name="T">The type of items in the immutable stack.</typeparam>
  4615. <returns>A new immutable stack that contains the specified items.</returns>
  4616. </member>
  4617. <member name="M:System.Collections.Immutable.ImmutableStack.CreateRange``1(System.Collections.Generic.IEnumerable{``0})">
  4618. <summary>Creates a new immutable stack that contains the specified items.</summary>
  4619. <param name="items">The items to add to the stack before it’s immutable.</param>
  4620. <typeparam name="T">The type of items in the stack.</typeparam>
  4621. <returns>An immutable stack that contains the specified items.</returns>
  4622. </member>
  4623. <member name="M:System.Collections.Immutable.ImmutableStack.Pop``1(System.Collections.Immutable.IImmutableStack{``0},``0@)">
  4624. <summary>Removes the specified item from an immutable stack.</summary>
  4625. <param name="stack">The stack to modify.</param>
  4626. <param name="value">The item to remove from the stack.</param>
  4627. <typeparam name="T">The type of items contained in the stack.</typeparam>
  4628. <returns>A stack; never null.</returns>
  4629. </member>
  4630. <member name="T:System.Linq.ImmutableArrayExtensions">
  4631. <summary>LINQ extension method overrides that offer greater efficiency for <see cref="T:System.Collections.Immutable.ImmutableArray`1"></see> than the standard LINQ methods
  4632. NuGet package: System.Collections.Immutable (about immutable collections and how to install)</summary>
  4633. </member>
  4634. <member name="M:System.Linq.ImmutableArrayExtensions.Aggregate``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``0,``0})">
  4635. <summary>Applies a function to a sequence of elements in a cumulative way.</summary>
  4636. <param name="immutableArray">The collection to apply the function to.</param>
  4637. <param name="func">A function to be invoked on each element, in a cumulative way.</param>
  4638. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4639. <returns>The final value after the cumulative function has been applied to all elements.</returns>
  4640. </member>
  4641. <member name="M:System.Linq.ImmutableArrayExtensions.Aggregate``2(System.Collections.Immutable.ImmutableArray{``1},``0,System.Func{``0,``1,``0})">
  4642. <summary>Applies a function to a sequence of elements in a cumulative way.</summary>
  4643. <param name="immutableArray">The collection to apply the function to.</param>
  4644. <param name="seed">The initial accumulator value.</param>
  4645. <param name="func">A function to be invoked on each element, in a cumulative way.</param>
  4646. <typeparam name="TAccumulate">The type of the accumulated value.</typeparam>
  4647. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4648. <returns>The final accumulator value.</returns>
  4649. </member>
  4650. <member name="M:System.Linq.ImmutableArrayExtensions.Aggregate``3(System.Collections.Immutable.ImmutableArray{``2},``0,System.Func{``0,``2,``0},System.Func{``0,``1})">
  4651. <summary>Applies a function to a sequence of elements in a cumulative way.</summary>
  4652. <param name="immutableArray">The collection to apply the function to.</param>
  4653. <param name="seed">The initial accumulator value.</param>
  4654. <param name="func">A function to be invoked on each element, in a cumulative way.</param>
  4655. <param name="resultSelector"></param>
  4656. <typeparam name="TAccumulate">The type of the accumulated value.</typeparam>
  4657. <typeparam name="TResult">The type of result returned by the result selector.</typeparam>
  4658. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4659. <returns>The final accumulator value.</returns>
  4660. </member>
  4661. <member name="M:System.Linq.ImmutableArrayExtensions.All``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4662. <summary>Gets a value indicating whether all elements in this array match a given condition.</summary>
  4663. <param name="immutableArray">The array to check for matches.</param>
  4664. <param name="predicate">The predicate.</param>
  4665. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4666. <returns>true if every element of the source sequence passes the test in the specified predicate; otherwise, false.</returns>
  4667. </member>
  4668. <member name="M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0})">
  4669. <summary>Gets a value indicating whether the array contains any elements.</summary>
  4670. <param name="immutableArray">The array to check for elements.</param>
  4671. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4672. <returns>true if the array contains an elements; otherwise, false.</returns>
  4673. </member>
  4674. <member name="M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  4675. <summary>Returns a value indicating whether this collection contains any elements.</summary>
  4676. <param name="builder">The builder to check for matches.</param>
  4677. <typeparam name="T">The type of elements in the array.</typeparam>
  4678. <returns>true if the array builder contains any elements; otherwise, false.</returns>
  4679. </member>
  4680. <member name="M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4681. <summary>Gets a value indicating whether the array contains any elements that match a specified condition.</summary>
  4682. <param name="immutableArray">The array to check for elements.</param>
  4683. <param name="predicate">The delegate that defines the condition to match to an element.</param>
  4684. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4685. <returns>true if an element matches the specified condition; otherwise, false.</returns>
  4686. </member>
  4687. <member name="M:System.Linq.ImmutableArrayExtensions.ElementAt``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32)">
  4688. <summary>Returns the element at a specified index in the array.</summary>
  4689. <param name="immutableArray">The array to find an element in.</param>
  4690. <param name="index">The index for the element to retrieve.</param>
  4691. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4692. <returns>The item at the specified index.</returns>
  4693. </member>
  4694. <member name="M:System.Linq.ImmutableArrayExtensions.ElementAtOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32)">
  4695. <summary>Returns the element at a specified index in a sequence or a default value if the index is out of range.</summary>
  4696. <param name="immutableArray">The array to find an element in.</param>
  4697. <param name="index">The index for the element to retrieve.</param>
  4698. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4699. <returns>The item at the specified index, or the default value if the index is not found.</returns>
  4700. </member>
  4701. <member name="M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0})">
  4702. <summary>Returns the first element in an array.</summary>
  4703. <param name="immutableArray">The array to get an item from.</param>
  4704. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4705. <returns>The first item in the array.</returns>
  4706. <exception cref="T:System.InvalidOperationException">If the array is empty.</exception>
  4707. </member>
  4708. <member name="M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  4709. <summary>Returns the first element in the collection.</summary>
  4710. <param name="builder">The builder to retrieve an item from.</param>
  4711. <typeparam name="T">The type of items in the array.</typeparam>
  4712. <returns>The first item in the list.</returns>
  4713. <exception cref="T:System.InvalidOperationException">If the array is empty.</exception>
  4714. </member>
  4715. <member name="M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4716. <summary>Returns the first element in a sequence that satisfies a specified condition.</summary>
  4717. <param name="immutableArray">The array to get an item from.</param>
  4718. <param name="predicate">The delegate that defines the conditions of the element to search for.</param>
  4719. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4720. <returns>The first item in the list if it meets the condition specified by <paramref name="predicate">predicate</paramref>.</returns>
  4721. <exception cref="T:System.InvalidOperationException">If the array is empty.</exception>
  4722. </member>
  4723. <member name="M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0})">
  4724. <summary>Returns the first element of a sequence, or a default value if the sequence contains no elements.</summary>
  4725. <param name="immutableArray">The array to retrieve items from.</param>
  4726. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4727. <returns>The first item in the list, if found; otherwise the default value for the item type.</returns>
  4728. </member>
  4729. <member name="M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  4730. <summary>Returns the first element in the collection, or the default value if the collection is empty.</summary>
  4731. <param name="builder">The builder to retrieve an element from.</param>
  4732. <typeparam name="T">The type of item in the builder.</typeparam>
  4733. <returns>The first item in the list, if found; otherwise the default value for the item type.</returns>
  4734. </member>
  4735. <member name="M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4736. <summary>Returns the first element of the sequence that satisfies a condition or a default value if no such element is found.</summary>
  4737. <param name="immutableArray">The array to retrieve elments from.</param>
  4738. <param name="predicate">The delegate that defines the conditions of the element to search for.</param>
  4739. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4740. <returns>The first item in the list, if found; otherwise the default value for the item type.</returns>
  4741. </member>
  4742. <member name="M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  4743. <summary>Returns the last element in the collection.</summary>
  4744. <param name="builder">The builder to retrieve elements from.</param>
  4745. <typeparam name="T">The type of item in the builder.</typeparam>
  4746. <returns>The last element in the builder.</returns>
  4747. <exception cref="T:System.InvalidOperationException">Thrown if the collection is empty.</exception>
  4748. </member>
  4749. <member name="M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4750. <summary>Returns the last element of a sequence that satisfies a specified condition.</summary>
  4751. <param name="immutableArray">The array to retrieve elements from.</param>
  4752. <param name="predicate">The delegate that defines the conditions of the element to retrieve.</param>
  4753. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4754. <returns>The last element of the array that satisfies the <paramref name="predicate">predicate</paramref> condition.</returns>
  4755. <exception cref="T:System.InvalidOperationException">Thrown if the collection is empty.</exception>
  4756. </member>
  4757. <member name="M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0})">
  4758. <summary>Returns the last element of the array.</summary>
  4759. <param name="immutableArray">The array to retrieve items from.</param>
  4760. <typeparam name="T">The type of element contained by the array.</typeparam>
  4761. <returns>The last element in the array.</returns>
  4762. <exception cref="T:System.InvalidOperationException">Thrown if the collection is empty.</exception>
  4763. </member>
  4764. <member name="M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0})">
  4765. <summary>Returns the last element of a sequence, or a default value if the sequence contains no elements.</summary>
  4766. <param name="immutableArray">The array to retrieve items from.</param>
  4767. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4768. <returns>The last element of a sequence, or a default value if the sequence contains no elements.</returns>
  4769. </member>
  4770. <member name="M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder)">
  4771. <summary>Returns the last element in the collection, or the default value if the collection is empty.</summary>
  4772. <param name="builder">The builder to retrieve an element from.</param>
  4773. <typeparam name="T">The type of item in the builder.</typeparam>
  4774. <returns>The last element of a sequence, or a default value if the sequence contains no elements.</returns>
  4775. </member>
  4776. <member name="M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4777. <summary>Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.</summary>
  4778. <param name="immutableArray">The array to retrieve an element from.</param>
  4779. <param name="predicate">The delegate that defines the conditions of the element to search for.</param>
  4780. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4781. <returns>The last element of a sequence, or a default value if the sequence contains no elements.</returns>
  4782. </member>
  4783. <member name="M:System.Linq.ImmutableArrayExtensions.Select``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1})">
  4784. <summary>Projects each element of a sequence into a new form.</summary>
  4785. <param name="immutableArray">The immutable array to select items from.</param>
  4786. <param name="selector">A transform function to apply to each element.</param>
  4787. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4788. <typeparam name="TResult">The type of the result element.</typeparam>
  4789. <returns>An <see cref="System.Collections.Generic.IEnumerable`1"></see> whose elements are the result of invoking the transform function on each element of source.</returns>
  4790. </member>
  4791. <member name="M:System.Linq.ImmutableArrayExtensions.SelectMany``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
  4792. <summary>Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"></see>, flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein.</summary>
  4793. <param name="immutableArray">The immutable array.</param>
  4794. <param name="collectionSelector">A transform function to apply to each element of the input sequence.</param>
  4795. <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
  4796. <typeparam name="TSource">The type of the elements of immutableArray.</typeparam>
  4797. <typeparam name="TCollection">The type of the intermediate elements collected by collectionSelector.</typeparam>
  4798. <typeparam name="TResult">The type of the elements of the resulting sequence.</typeparam>
  4799. <returns>An <see cref="System.Collections.Generic.IEnumerable`1"></see> whose elements are the result of invoking the one-to-many transform function <paramref name="collectionSelector">collectionSelector</paramref> on each element of <paramref name="immutableArray">immutableArray</paramref> and then mapping each of those sequence elements and their corresponding source element to a result element.</returns>
  4800. </member>
  4801. <member name="M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``1})">
  4802. <summary>Determines whether two sequences are equal according to an equality comparer.</summary>
  4803. <param name="immutableArray">The array to use for comparison.</param>
  4804. <param name="items">The items to use for comparison.</param>
  4805. <param name="comparer">The comparer to use to check for equality.</param>
  4806. <typeparam name="TDerived">The type of element in the compared array.</typeparam>
  4807. <typeparam name="TBase">The type of element contained by the collection.</typeparam>
  4808. <returns>true to indicate the sequences are equal; otherwise, false.</returns>
  4809. </member>
  4810. <member name="M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Collections.Generic.IEqualityComparer{``1})">
  4811. <summary>Determines whether two sequences are equal according to an equality comparer.</summary>
  4812. <param name="immutableArray">The array to use for comparison.</param>
  4813. <param name="items">The items to use for comparison.</param>
  4814. <param name="comparer">The comparer to use to check for equality.</param>
  4815. <typeparam name="TDerived">The type of element in the compared array.</typeparam>
  4816. <typeparam name="TBase">The type of element contained by the collection.</typeparam>
  4817. <returns>true to indicate the sequences are equal; otherwise, false.</returns>
  4818. </member>
  4819. <member name="M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Func{``1,``1,System.Boolean})">
  4820. <summary>Determines whether two sequences are equal according to an equality comparer.</summary>
  4821. <param name="immutableArray">The array to use for comparison.</param>
  4822. <param name="items">The items to use for comparison.</param>
  4823. <param name="predicate">The comparer to use to check for equality.</param>
  4824. <typeparam name="TDerived">The type of element in the compared array.</typeparam>
  4825. <typeparam name="TBase">The type of element contained by the collection.</typeparam>
  4826. <returns>true to indicate the sequences are equal; otherwise, false.</returns>
  4827. </member>
  4828. <member name="M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0})">
  4829. <summary>Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.</summary>
  4830. <param name="immutableArray">The array to retrieve the element from.</param>
  4831. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4832. <returns>The element in the sequence.</returns>
  4833. </member>
  4834. <member name="M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4835. <summary>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.</summary>
  4836. <param name="immutableArray"></param>
  4837. <param name="predicate"></param>
  4838. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4839. <returns>Returns <see cref="System.Boolean"></see>.</returns>
  4840. </member>
  4841. <member name="M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0})">
  4842. <summary>Returns the only element of the array, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.</summary>
  4843. <param name="immutableArray"></param>
  4844. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4845. <returns>The element in the array, or the default value if the array is empty.</returns>
  4846. </member>
  4847. <member name="M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4848. <summary>Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.</summary>
  4849. <param name="immutableArray">The array to get the element from.</param>
  4850. <param name="predicate">The condition the element must satisfy.</param>
  4851. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4852. <returns>The element if it satisfies the specified condition; otherwise the default element.</returns>
  4853. </member>
  4854. <member name="M:System.Linq.ImmutableArrayExtensions.ToArray``1(System.Collections.Immutable.ImmutableArray{``0})">
  4855. <summary>Copies the contents of this array to a mutable array.</summary>
  4856. <param name="immutableArray"></param>
  4857. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4858. <returns>The newly instantiated array.</returns>
  4859. </member>
  4860. <member name="M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0})">
  4861. <summary>Creates a dictionary based on the contents of this array.</summary>
  4862. <param name="immutableArray">The array to create a dictionary from.</param>
  4863. <param name="keySelector">The key selector.</param>
  4864. <typeparam name="TKey">The type of the key.</typeparam>
  4865. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4866. <returns>The newly initialized dictionary.</returns>
  4867. </member>
  4868. <member name="M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0})">
  4869. <summary>Creates a dictionary based on the contents of this array.</summary>
  4870. <param name="immutableArray">The array to create a dictionary from.</param>
  4871. <param name="keySelector">The key selector.</param>
  4872. <param name="comparer">The comparer to initialize the dictionary with.</param>
  4873. <typeparam name="TKey">The type of the key.</typeparam>
  4874. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4875. <returns>The newly initialized dictionary.</returns>
  4876. </member>
  4877. <member name="M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1},System.Collections.Generic.IEqualityComparer{``0})">
  4878. <summary>Creates a dictionary based on the contents of this array.</summary>
  4879. <param name="immutableArray">The array to create a dictionary from.</param>
  4880. <param name="keySelector">The key selector.</param>
  4881. <param name="elementSelector">The element selector.</param>
  4882. <param name="comparer">The comparer to initialize the dictionary with.</param>
  4883. <typeparam name="TKey">The type of the key.</typeparam>
  4884. <typeparam name="TElement">The type of the element.</typeparam>
  4885. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4886. <returns>The newly initialized dictionary.</returns>
  4887. </member>
  4888. <member name="M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1})">
  4889. <summary>Creates a dictionary based on the contents of this array.</summary>
  4890. <param name="immutableArray">The array to create a dictionary from.</param>
  4891. <param name="keySelector">The key selector.</param>
  4892. <param name="elementSelector">The element selector.</param>
  4893. <typeparam name="TKey">The type of the key.</typeparam>
  4894. <typeparam name="TElement">The type of the element.</typeparam>
  4895. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4896. <returns>The newly initialized dictionary.</returns>
  4897. </member>
  4898. <member name="M:System.Linq.ImmutableArrayExtensions.Where``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean})">
  4899. <summary>Filters a sequence of values based on a predicate.</summary>
  4900. <param name="immutableArray">The array to filter.</param>
  4901. <param name="predicate">The condition to use for filtering the array content.</param>
  4902. <typeparam name="T">The type of element contained by the collection.</typeparam>
  4903. <returns>Returns <see cref="System.Collections.Generic.IEnumerable`1"></see> that contains elements that meet the condition.</returns>
  4904. </member>
  4905. </members>
  4906. </doc>