RcsbFv3DAssembly._internal_.Indexed-3.html 565 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003
  1. <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Indexed | @rcsb/rcsb-saguaro-3d</title><meta name="description" content="Documentation for @rcsb/rcsb-saguaro-3d"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
  2. <div class="tsd-toolbar-contents container">
  3. <div class="table-cell" id="tsd-search" data-base="..">
  4. <div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
  5. <ul class="results">
  6. <li class="state loading">Preparing search index...</li>
  7. <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rcsb/rcsb-saguaro-3d</a></div>
  8. <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
  9. <div class="container container-main">
  10. <div class="col-8 col-content">
  11. <div class="tsd-page-title">
  12. <ul class="tsd-breadcrumb">
  13. <li><a href="../modules.html">@rcsb/rcsb-saguaro-3d</a></li>
  14. <li><a href="../modules/RcsbFv3DAssembly.html">RcsbFv3DAssembly</a></li>
  15. <li><a href="../modules/RcsbFv3DAssembly._internal_.html">&lt;internal&gt;</a></li>
  16. <li><a href="RcsbFv3DAssembly._internal_.Indexed-3.html">Indexed</a></li></ul>
  17. <h1>Interface Indexed&lt;T&gt;</h1></div>
  18. <section class="tsd-panel tsd-type-parameters">
  19. <h4>Type Parameters</h4>
  20. <ul class="tsd-type-parameters">
  21. <li>
  22. <h4>T</h4></li></ul></section>
  23. <section class="tsd-panel tsd-hierarchy">
  24. <h4>Hierarchy</h4>
  25. <ul class="tsd-hierarchy">
  26. <li><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Seq-2.html" class="tsd-signature-type" data-tsd-kind="Function">Seq</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></li>
  27. <li><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-4.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span>
  28. <ul class="tsd-hierarchy">
  29. <li><span class="target">Indexed</span></li></ul></li></ul></section><aside class="tsd-sources">
  30. <ul>
  31. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2885</li>
  32. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2871</li>
  33. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2889</li></ul></aside>
  34. <section class="tsd-panel-group tsd-index-group">
  35. <section class="tsd-panel tsd-index-panel">
  36. <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
  37. <h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex=0><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></svg> Index</h5></summary>
  38. <div class="tsd-accordion-details">
  39. <section class="tsd-index-section">
  40. <h3 class="tsd-index-heading">Constructors</h3>
  41. <div class="tsd-index-list"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#constructor" class="tsd-index-link tsd-kind-constructor tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-512-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-512-text"></path></svg><span>constructor</span></a>
  42. </div></section>
  43. <section class="tsd-index-section">
  44. <h3 class="tsd-index-heading">Properties</h3>
  45. <div class="tsd-index-list"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#size" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-1024-path"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)" id="icon-1024-text"></path></svg><span>size</span></a>
  46. </div></section>
  47. <section class="tsd-index-section">
  48. <h3 class="tsd-index-heading">Methods</h3>
  49. <div class="tsd-index-list"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#_iterator_" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-2048-path"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)" id="icon-2048-text"></path></svg><span>[iterator]</span></a>
  50. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#butLast" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>but<wbr/>Last</span></a>
  51. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#cacheResult" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>cache<wbr/>Result</span></a>
  52. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#concat" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>concat</span></a>
  53. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#contains" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>contains</span></a>
  54. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#count" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>count</span></a>
  55. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#countBy" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>count<wbr/>By</span></a>
  56. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#entries" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>entries</span></a>
  57. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#entrySeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>entry<wbr/>Seq</span></a>
  58. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#equals" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>equals</span></a>
  59. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#every" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>every</span></a>
  60. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#filter" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>filter</span></a>
  61. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#filterNot" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>filter<wbr/>Not</span></a>
  62. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#find" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find</span></a>
  63. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findEntry" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Entry</span></a>
  64. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findIndex" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Index</span></a>
  65. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findKey" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Key</span></a>
  66. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLast" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Last</span></a>
  67. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastEntry" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Last<wbr/>Entry</span></a>
  68. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastIndex" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Last<wbr/>Index</span></a>
  69. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastKey" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>find<wbr/>Last<wbr/>Key</span></a>
  70. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#first" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>first</span></a>
  71. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#flatMap" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>flat<wbr/>Map</span></a>
  72. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#flatten" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>flatten</span></a>
  73. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#forEach" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>for<wbr/>Each</span></a>
  74. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#fromEntrySeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>from<wbr/>Entry<wbr/>Seq</span></a>
  75. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#get" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get</span></a>
  76. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#getIn" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>In</span></a>
  77. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#groupBy" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>group<wbr/>By</span></a>
  78. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#has" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has</span></a>
  79. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#hasIn" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>In</span></a>
  80. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#hashCode" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>hash<wbr/>Code</span></a>
  81. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#includes" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>includes</span></a>
  82. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#indexOf" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>index<wbr/>Of</span></a>
  83. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#interleave" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>interleave</span></a>
  84. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#interpose" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>interpose</span></a>
  85. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isEmpty" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Empty</span></a>
  86. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isSubset" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Subset</span></a>
  87. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isSuperset" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Superset</span></a>
  88. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#join" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>join</span></a>
  89. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keyOf" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>key<wbr/>Of</span></a>
  90. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keySeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>key<wbr/>Seq</span></a>
  91. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keys" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>keys</span></a>
  92. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#last" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>last</span></a>
  93. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#lastIndexOf" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>last<wbr/>Index<wbr/>Of</span></a>
  94. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#lastKeyOf" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>last<wbr/>Key<wbr/>Of</span></a>
  95. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#map" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>map</span></a>
  96. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#max" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>max</span></a>
  97. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#maxBy" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>max<wbr/>By</span></a>
  98. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#min" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>min</span></a>
  99. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#minBy" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>min<wbr/>By</span></a>
  100. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reduce" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>reduce</span></a>
  101. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reduceRight" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>reduce<wbr/>Right</span></a>
  102. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#rest" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>rest</span></a>
  103. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reverse" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>reverse</span></a>
  104. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skip" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>skip</span></a>
  105. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipLast" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>skip<wbr/>Last</span></a>
  106. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipUntil" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>skip<wbr/>Until</span></a>
  107. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipWhile" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>skip<wbr/>While</span></a>
  108. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#slice" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>slice</span></a>
  109. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#some" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>some</span></a>
  110. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#sort" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>sort</span></a>
  111. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#sortBy" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>sort<wbr/>By</span></a>
  112. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#splice" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>splice</span></a>
  113. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#take" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>take</span></a>
  114. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeLast" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>take<wbr/>Last</span></a>
  115. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeUntil" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>take<wbr/>Until</span></a>
  116. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeWhile" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>take<wbr/>While</span></a>
  117. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toArray" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Array</span></a>
  118. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toIndexedSeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Indexed<wbr/>Seq</span></a>
  119. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toJS" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>toJS</span></a>
  120. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toJSON" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>toJSON</span></a>
  121. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toKeyedSeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Keyed<wbr/>Seq</span></a>
  122. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toList" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>List</span></a>
  123. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toMap" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Map</span></a>
  124. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toObject" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Object</span></a>
  125. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toOrderedMap" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Ordered<wbr/>Map</span></a>
  126. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toOrderedSet" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Ordered<wbr/>Set</span></a>
  127. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Seq</span></a>
  128. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSet" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Set</span></a>
  129. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSetSeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Set<wbr/>Seq</span></a>
  130. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toStack" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>to<wbr/>Stack</span></a>
  131. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#update" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>update</span></a>
  132. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#valueSeq" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>value<wbr/>Seq</span></a>
  133. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#values" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>values</span></a>
  134. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zip" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>zip</span></a>
  135. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zipAll" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>zip<wbr/>All</span></a>
  136. <a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zipWith" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>zip<wbr/>With</span></a>
  137. </div></section></div></details></section></section>
  138. <section class="tsd-panel-group tsd-member-group">
  139. <h2>Constructors</h2>
  140. <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="constructor" class="tsd-anchor"></a>
  141. <h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
  142. <div class="tsd-signature">constructor</div><aside class="tsd-sources">
  143. <p>Inherited from Seq&lt;number, T&gt;.constructor</p></aside></section></section>
  144. <section class="tsd-panel-group tsd-member-group">
  145. <h2>Properties</h2>
  146. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="size" class="tsd-anchor"></a>
  147. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>size</span><a href="#size" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  148. <div class="tsd-signature">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></div>
  149. <div class="tsd-comment tsd-typography"><p>Some Seqs can describe their size lazily. When this is the case,
  150. size will be an integer. Otherwise it will be undefined.</p>
  151. <p>For example, Seqs returned from <code>map()</code> or <code>reverse()</code>
  152. preserve the size of the original <code>Seq</code> while <code>filter()</code> does not.</p>
  153. <p>Note: <code>Range</code>, <code>Repeat</code> and <code>Seq</code>s made from <code>Array</code>s and <code>Object</code>s will
  154. always have a size.</p>
  155. </div><aside class="tsd-sources">
  156. <p>Inherited from Seq.size</p>
  157. <ul>
  158. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3166</li></ul></aside></section></section>
  159. <section class="tsd-panel-group tsd-member-group">
  160. <h2>Methods</h2>
  161. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="_iterator_" class="tsd-anchor"></a>
  162. <h3 class="tsd-anchor-link"><span>[iterator]</span><a href="#_iterator_" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  163. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  164. <li class="tsd-signature tsd-anchor-link" id="_iterator_._iterator_-1">[iterator]<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#_iterator_._iterator_-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  165. <li class="tsd-description">
  166. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  167. <p>Overrides Seq.__@iterator@85</p>
  168. <ul>
  169. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3027</li></ul></aside></li></ul></section>
  170. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="butLast" class="tsd-anchor"></a>
  171. <h3 class="tsd-anchor-link"><span>but<wbr/>Last</span><a href="#butLast" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  172. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  173. <li class="tsd-signature tsd-anchor-link" id="butLast.butLast-1">but<wbr/>Last<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#butLast.butLast-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  174. <li class="tsd-description">
  175. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type containing all entries except
  176. the last.</p>
  177. </div>
  178. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  179. <p>Inherited from Seq.butLast</p>
  180. <ul>
  181. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4441</li></ul></aside></li></ul></section>
  182. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="cacheResult" class="tsd-anchor"></a>
  183. <h3 class="tsd-anchor-link"><span>cache<wbr/>Result</span><a href="#cacheResult" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  184. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  185. <li class="tsd-signature tsd-anchor-link" id="cacheResult.cacheResult-1">cache<wbr/>Result<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#cacheResult.cacheResult-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  186. <li class="tsd-description">
  187. <div class="tsd-comment tsd-typography"><p>Because Sequences are lazy and designed to be chained together, they do
  188. not cache their results. For example, this map function is called a total
  189. of 6 times, as each <code>join</code> iterates the Seq of three values.</p>
  190. <pre><code><span class="hl-2">var</span><span class="hl-1"> </span><span class="hl-0">squares</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]).</span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1"> * </span><span class="hl-0">x</span><span class="hl-1">)</span><br/><span class="hl-0">squares</span><span class="hl-1">.</span><span class="hl-6">join</span><span class="hl-1">() + </span><span class="hl-0">squares</span><span class="hl-1">.</span><span class="hl-6">join</span><span class="hl-1">()</span>
  191. </code></pre>
  192. <p>If you know a <code>Seq</code> will be used multiple times, it may be more
  193. efficient to first cache it in memory. Here, the map function is called
  194. only 3 times.</p>
  195. <pre><code><span class="hl-2">var</span><span class="hl-1"> </span><span class="hl-0">squares</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]).</span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1"> * </span><span class="hl-0">x</span><span class="hl-1">).</span><span class="hl-6">cacheResult</span><span class="hl-1">()</span><br/><span class="hl-0">squares</span><span class="hl-1">.</span><span class="hl-6">join</span><span class="hl-1">() + </span><span class="hl-0">squares</span><span class="hl-1">.</span><span class="hl-6">join</span><span class="hl-1">()</span>
  196. </code></pre>
  197. <p>Use this method judiciously, as it must fully evaluate a Seq which can be
  198. a burden on memory and possibly performance.</p>
  199. <p>Note: after calling <code>cacheResult</code>, a Seq will always have a <code>size</code>.</p>
  200. </div>
  201. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  202. <p>Inherited from Seq.cacheResult</p>
  203. <ul>
  204. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3190</li></ul></aside></li></ul></section>
  205. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="concat" class="tsd-anchor"></a>
  206. <h3 class="tsd-anchor-link"><span>concat</span><a href="#concat" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  207. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  208. <li class="tsd-signature tsd-anchor-link" id="concat.concat-1">concat<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>valuesOrCollections<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><a href="#concat.concat-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  209. <li class="tsd-description">
  210. <div class="tsd-comment tsd-typography"><p>Returns a new Seq with other collections concatenated to this one.</p>
  211. </div>
  212. <div class="tsd-type-parameters">
  213. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  214. <ul class="tsd-type-parameters">
  215. <li>
  216. <h4>C</h4></li></ul></div>
  217. <div class="tsd-parameters">
  218. <h4 class="tsd-parameters-title">Parameters</h4>
  219. <ul class="tsd-parameter-list">
  220. <li>
  221. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>valuesOrCollections: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  222. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  223. <p>Overrides Seq.concat</p>
  224. <ul>
  225. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2913</li></ul></aside></li></ul></section>
  226. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="contains" class="tsd-anchor"></a>
  227. <h3 class="tsd-anchor-link"><span>contains</span><a href="#contains" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  228. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  229. <li class="tsd-signature tsd-anchor-link" id="contains.contains-1">contains<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#contains.contains-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  230. <li class="tsd-description">
  231. <div class="tsd-parameters">
  232. <h4 class="tsd-parameters-title">Parameters</h4>
  233. <ul class="tsd-parameter-list">
  234. <li>
  235. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  236. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  237. <p>Inherited from Seq.contains</p>
  238. <ul>
  239. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3970</li></ul></aside></li></ul></section>
  240. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="count" class="tsd-anchor"></a>
  241. <h3 class="tsd-anchor-link"><span>count</span><a href="#count" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  242. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  243. <li class="tsd-signature tsd-anchor-link" id="count.count-1">count<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#count.count-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  244. <li class="tsd-description">
  245. <div class="tsd-comment tsd-typography"><p>Returns the size of this Collection.</p>
  246. <p>Regardless of if this Collection can describe its size lazily (some Seqs
  247. cannot), this method will always return the correct size. E.g. it
  248. evaluates a lazy <code>Seq</code> if necessary.</p>
  249. <p>If <code>predicate</code> is provided, then this returns the count of entries in the
  250. Collection for which the <code>predicate</code> returns true.</p>
  251. </div>
  252. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  253. <p>Inherited from Seq.count</p>
  254. <ul>
  255. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4661</li></ul></aside></li>
  256. <li class="tsd-signature tsd-anchor-link" id="count.count-2">count<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#count.count-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  257. <li class="tsd-description">
  258. <div class="tsd-parameters">
  259. <h4 class="tsd-parameters-title">Parameters</h4>
  260. <ul class="tsd-parameter-list">
  261. <li>
  262. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  263. <ul class="tsd-parameters">
  264. <li class="tsd-parameter-signature">
  265. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  266. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  267. <li class="tsd-description">
  268. <div class="tsd-parameters">
  269. <h4 class="tsd-parameters-title">Parameters</h4>
  270. <ul class="tsd-parameter-list">
  271. <li>
  272. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  273. <li>
  274. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  275. <li>
  276. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  277. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  278. <li>
  279. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  280. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  281. <p>Inherited from Seq.count</p>
  282. <ul>
  283. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4662</li></ul></aside></li></ul></section>
  284. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="countBy" class="tsd-anchor"></a>
  285. <h3 class="tsd-anchor-link"><span>count<wbr/>By</span><a href="#countBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  286. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  287. <li class="tsd-signature tsd-anchor-link" id="countBy.countBy-1">count<wbr/>By<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>grouper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Map-2.html" class="tsd-signature-type" data-tsd-kind="Function">Map</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span><a href="#countBy.countBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  288. <li class="tsd-description">
  289. <div class="tsd-comment tsd-typography"><p>Returns a <code>Seq.Keyed</code> of counts, grouped by the return value of
  290. the <code>grouper</code> function.</p>
  291. <p>Note: This is not a lazy operation.</p>
  292. </div>
  293. <div class="tsd-type-parameters">
  294. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  295. <ul class="tsd-type-parameters">
  296. <li>
  297. <h4>G</h4></li></ul></div>
  298. <div class="tsd-parameters">
  299. <h4 class="tsd-parameters-title">Parameters</h4>
  300. <ul class="tsd-parameter-list">
  301. <li>
  302. <h5>grouper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">)</span></h5>
  303. <ul class="tsd-parameters">
  304. <li class="tsd-parameter-signature">
  305. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  306. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span></li>
  307. <li class="tsd-description">
  308. <div class="tsd-parameters">
  309. <h4 class="tsd-parameters-title">Parameters</h4>
  310. <ul class="tsd-parameter-list">
  311. <li>
  312. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  313. <li>
  314. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  315. <li>
  316. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  317. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span></h4></li></ul></li></ul></li>
  318. <li>
  319. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  320. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Map-2.html" class="tsd-signature-type" data-tsd-kind="Function">Map</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  321. <p>Inherited from Seq.countBy</p>
  322. <ul>
  323. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4673</li></ul></aside></li></ul></section>
  324. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="entries" class="tsd-anchor"></a>
  325. <h3 class="tsd-anchor-link"><span>entries</span><a href="#entries" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  326. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  327. <li class="tsd-signature tsd-anchor-link" id="entries.entries-1">entries<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#entries.entries-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  328. <li class="tsd-description">
  329. <div class="tsd-comment tsd-typography"><p>An iterator of this <code>Collection</code>&#39;s entries as <code>[ key, value ]</code> tuples.</p>
  330. <p>Note: this will return an ES6 iterator which does not support
  331. Immutable.js sequence algorithms. Use <code>entrySeq</code> instead, if this is
  332. what you want.</p>
  333. </div>
  334. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  335. <p>Inherited from Seq.entries</p>
  336. <ul>
  337. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4209</li></ul></aside></li></ul></section>
  338. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="entrySeq" class="tsd-anchor"></a>
  339. <h3 class="tsd-anchor-link"><span>entry<wbr/>Seq</span><a href="#entrySeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  340. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  341. <li class="tsd-signature tsd-anchor-link" id="entrySeq.entrySeq-1">entry<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#entrySeq.entrySeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  342. <li class="tsd-description">
  343. <div class="tsd-comment tsd-typography"><p>Returns a new Seq.Indexed of [key, value] tuples.</p>
  344. </div>
  345. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  346. <p>Inherited from Seq.entrySeq</p>
  347. <ul>
  348. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4229</li></ul></aside></li></ul></section>
  349. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="equals" class="tsd-anchor"></a>
  350. <h3 class="tsd-anchor-link"><span>equals</span><a href="#equals" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  351. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  352. <li class="tsd-signature tsd-anchor-link" id="equals.equals-1">equals<span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#equals.equals-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  353. <li class="tsd-description">
  354. <div class="tsd-comment tsd-typography"><p>True if this and the other Collection have value equality, as defined
  355. by <code>Immutable.is()</code>.</p>
  356. <p>Note: This is equivalent to <code>Immutable.is(this, other)</code>, but provided to
  357. allow for chained expressions.</p>
  358. </div>
  359. <div class="tsd-parameters">
  360. <h4 class="tsd-parameters-title">Parameters</h4>
  361. <ul class="tsd-parameter-list">
  362. <li>
  363. <h5>other: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  364. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  365. <p>Inherited from Seq.equals</p>
  366. <ul>
  367. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3917</li></ul></aside></li></ul></section>
  368. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="every" class="tsd-anchor"></a>
  369. <h3 class="tsd-anchor-link"><span>every</span><a href="#every" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  370. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  371. <li class="tsd-signature tsd-anchor-link" id="every.every-1">every<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#every.every-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  372. <li class="tsd-description">
  373. <div class="tsd-comment tsd-typography"><p>True if <code>predicate</code> returns true for all entries in the Collection.</p>
  374. </div>
  375. <div class="tsd-parameters">
  376. <h4 class="tsd-parameters-title">Parameters</h4>
  377. <ul class="tsd-parameter-list">
  378. <li>
  379. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  380. <ul class="tsd-parameters">
  381. <li class="tsd-parameter-signature">
  382. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  383. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  384. <li class="tsd-description">
  385. <div class="tsd-parameters">
  386. <h4 class="tsd-parameters-title">Parameters</h4>
  387. <ul class="tsd-parameter-list">
  388. <li>
  389. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  390. <li>
  391. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  392. <li>
  393. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  394. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  395. <li>
  396. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  397. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  398. <p>Inherited from Seq.every</p>
  399. <ul>
  400. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4624</li></ul></aside></li></ul></section>
  401. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="filter" class="tsd-anchor"></a>
  402. <h3 class="tsd-anchor-link"><span>filter</span><a href="#filter" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  403. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  404. <li class="tsd-signature tsd-anchor-link" id="filter.filter-1">filter<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">value</span><span class="tsd-signature-symbol"> is </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span><span class="tsd-signature-symbol">&gt;</span><a href="#filter.filter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  405. <li class="tsd-description">
  406. <div class="tsd-comment tsd-typography"><p>Returns a new Seq with only the values for which the <code>predicate</code>
  407. function returns true.</p>
  408. <p>Note: <code>filter()</code> always returns a new instance, even if it results in
  409. not filtering out any values.</p>
  410. </div>
  411. <div class="tsd-type-parameters">
  412. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  413. <ul class="tsd-type-parameters">
  414. <li>
  415. <h4>F</h4></li></ul></div>
  416. <div class="tsd-parameters">
  417. <h4 class="tsd-parameters-title">Parameters</h4>
  418. <ul class="tsd-parameter-list">
  419. <li>
  420. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">value</span><span class="tsd-signature-symbol"> is </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span><span class="tsd-signature-symbol">)</span></h5>
  421. <ul class="tsd-parameters">
  422. <li class="tsd-parameter-signature">
  423. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  424. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">value</span><span class="tsd-signature-symbol"> is </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span></li>
  425. <li class="tsd-description">
  426. <div class="tsd-parameters">
  427. <h4 class="tsd-parameters-title">Parameters</h4>
  428. <ul class="tsd-parameter-list">
  429. <li>
  430. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  431. <li>
  432. <h5>index: <span class="tsd-signature-type">number</span></h5></li>
  433. <li>
  434. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  435. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">value</span><span class="tsd-signature-symbol"> is </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span></h4></li></ul></li></ul></li>
  436. <li>
  437. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  438. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">F</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  439. <p>Overrides Seq.filter</p>
  440. <ul>
  441. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2952</li></ul></aside></li>
  442. <li class="tsd-signature tsd-anchor-link" id="filter.filter-2">filter<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#filter.filter-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  443. <li class="tsd-description">
  444. <div class="tsd-parameters">
  445. <h4 class="tsd-parameters-title">Parameters</h4>
  446. <ul class="tsd-parameter-list">
  447. <li>
  448. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span></h5>
  449. <ul class="tsd-parameters">
  450. <li class="tsd-parameter-signature">
  451. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  452. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span></li>
  453. <li class="tsd-description">
  454. <div class="tsd-parameters">
  455. <h4 class="tsd-parameters-title">Parameters</h4>
  456. <ul class="tsd-parameter-list">
  457. <li>
  458. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  459. <li>
  460. <h5>index: <span class="tsd-signature-type">number</span></h5></li>
  461. <li>
  462. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  463. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">unknown</span></h4></li></ul></li></ul></li>
  464. <li>
  465. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  466. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  467. <p>Overrides Seq.filter</p>
  468. <ul>
  469. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2956</li></ul></aside></li></ul></section>
  470. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="filterNot" class="tsd-anchor"></a>
  471. <h3 class="tsd-anchor-link"><span>filter<wbr/>Not</span><a href="#filterNot" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  472. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  473. <li class="tsd-signature tsd-anchor-link" id="filterNot.filterNot-1">filter<wbr/>Not<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#filterNot.filterNot-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  474. <li class="tsd-description">
  475. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type with only the entries for which
  476. the <code>predicate</code> function returns false.</p>
  477. <!-- runkit:activate -->
  478. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">a:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-0">b:</span><span class="hl-1"> </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-0">c:</span><span class="hl-1"> </span><span class="hl-8">3</span><span class="hl-1">, </span><span class="hl-0">d:</span><span class="hl-1"> </span><span class="hl-8">4</span><span class="hl-1">}).</span><span class="hl-6">filterNot</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1"> % </span><span class="hl-8">2</span><span class="hl-1"> === </span><span class="hl-8">0</span><span class="hl-1">)</span><br/><span class="hl-9">// Map { &quot;a&quot;: 1, &quot;c&quot;: 3 }</span>
  479. </code></pre>
  480. <p>Note: <code>filterNot()</code> always returns a new instance, even if it results in
  481. not filtering out any values.</p>
  482. </div>
  483. <div class="tsd-parameters">
  484. <h4 class="tsd-parameters-title">Parameters</h4>
  485. <ul class="tsd-parameter-list">
  486. <li>
  487. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  488. <ul class="tsd-parameters">
  489. <li class="tsd-parameter-signature">
  490. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  491. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  492. <li class="tsd-description">
  493. <div class="tsd-parameters">
  494. <h4 class="tsd-parameters-title">Parameters</h4>
  495. <ul class="tsd-parameter-list">
  496. <li>
  497. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  498. <li>
  499. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  500. <li>
  501. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  502. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  503. <li>
  504. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  505. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  506. <p>Inherited from Seq.filterNot</p>
  507. <ul>
  508. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4297</li></ul></aside></li></ul></section>
  509. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="find" class="tsd-anchor"></a>
  510. <h3 class="tsd-anchor-link"><span>find</span><a href="#find" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  511. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  512. <li class="tsd-signature tsd-anchor-link" id="find.find-1">find<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span>, notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#find.find-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  513. <li class="tsd-description">
  514. <div class="tsd-comment tsd-typography"><p>Returns the first value for which the <code>predicate</code> returns true.</p>
  515. </div>
  516. <div class="tsd-parameters">
  517. <h4 class="tsd-parameters-title">Parameters</h4>
  518. <ul class="tsd-parameter-list">
  519. <li>
  520. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  521. <ul class="tsd-parameters">
  522. <li class="tsd-parameter-signature">
  523. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  524. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  525. <li class="tsd-description">
  526. <div class="tsd-parameters">
  527. <h4 class="tsd-parameters-title">Parameters</h4>
  528. <ul class="tsd-parameter-list">
  529. <li>
  530. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  531. <li>
  532. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  533. <li>
  534. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  535. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  536. <li>
  537. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li>
  538. <li>
  539. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  540. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  541. <p>Inherited from Seq.find</p>
  542. <ul>
  543. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4683</li></ul></aside></li></ul></section>
  544. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findEntry" class="tsd-anchor"></a>
  545. <h3 class="tsd-anchor-link"><span>find<wbr/>Entry</span><a href="#findEntry" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  546. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  547. <li class="tsd-signature tsd-anchor-link" id="findEntry.findEntry-1">find<wbr/>Entry<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span>, notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><a href="#findEntry.findEntry-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  548. <li class="tsd-description">
  549. <div class="tsd-comment tsd-typography"><p>Returns the first [key, value] entry for which the <code>predicate</code> returns true.</p>
  550. </div>
  551. <div class="tsd-parameters">
  552. <h4 class="tsd-parameters-title">Parameters</h4>
  553. <ul class="tsd-parameter-list">
  554. <li>
  555. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  556. <ul class="tsd-parameters">
  557. <li class="tsd-parameter-signature">
  558. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  559. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  560. <li class="tsd-description">
  561. <div class="tsd-parameters">
  562. <h4 class="tsd-parameters-title">Parameters</h4>
  563. <ul class="tsd-parameter-list">
  564. <li>
  565. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  566. <li>
  567. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  568. <li>
  569. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  570. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  571. <li>
  572. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li>
  573. <li>
  574. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  575. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  576. <p>Inherited from Seq.findEntry</p>
  577. <ul>
  578. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4703</li></ul></aside></li></ul></section>
  579. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findIndex" class="tsd-anchor"></a>
  580. <h3 class="tsd-anchor-link"><span>find<wbr/>Index</span><a href="#findIndex" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  581. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  582. <li class="tsd-signature tsd-anchor-link" id="findIndex.findIndex-1">find<wbr/>Index<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#findIndex.findIndex-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  583. <li class="tsd-description">
  584. <div class="tsd-comment tsd-typography"><p>Returns the first index in the Collection where a value satisfies the
  585. provided predicate function. Otherwise -1 is returned.</p>
  586. </div>
  587. <div class="tsd-parameters">
  588. <h4 class="tsd-parameters-title">Parameters</h4>
  589. <ul class="tsd-parameter-list">
  590. <li>
  591. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  592. <ul class="tsd-parameters">
  593. <li class="tsd-parameter-signature">
  594. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  595. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  596. <li class="tsd-description">
  597. <div class="tsd-parameters">
  598. <h4 class="tsd-parameters-title">Parameters</h4>
  599. <ul class="tsd-parameter-list">
  600. <li>
  601. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  602. <li>
  603. <h5>index: <span class="tsd-signature-type">number</span></h5></li>
  604. <li>
  605. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  606. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  607. <li>
  608. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  609. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  610. <p>Inherited from Collection.Indexed.findIndex</p>
  611. <ul>
  612. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3703</li></ul></aside></li></ul></section>
  613. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findKey" class="tsd-anchor"></a>
  614. <h3 class="tsd-anchor-link"><span>find<wbr/>Key</span><a href="#findKey" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  615. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  616. <li class="tsd-signature tsd-anchor-link" id="findKey.findKey-1">find<wbr/>Key<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><a href="#findKey.findKey-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  617. <li class="tsd-description">
  618. <div class="tsd-comment tsd-typography"><p>Returns the key for which the <code>predicate</code> returns true.</p>
  619. </div>
  620. <div class="tsd-parameters">
  621. <h4 class="tsd-parameters-title">Parameters</h4>
  622. <ul class="tsd-parameter-list">
  623. <li>
  624. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  625. <ul class="tsd-parameters">
  626. <li class="tsd-parameter-signature">
  627. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  628. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  629. <li class="tsd-description">
  630. <div class="tsd-parameters">
  631. <h4 class="tsd-parameters-title">Parameters</h4>
  632. <ul class="tsd-parameter-list">
  633. <li>
  634. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  635. <li>
  636. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  637. <li>
  638. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  639. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  640. <li>
  641. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  642. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  643. <p>Inherited from Seq.findKey</p>
  644. <ul>
  645. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4724</li></ul></aside></li></ul></section>
  646. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findLast" class="tsd-anchor"></a>
  647. <h3 class="tsd-anchor-link"><span>find<wbr/>Last</span><a href="#findLast" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  648. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  649. <li class="tsd-signature tsd-anchor-link" id="findLast.findLast-1">find<wbr/>Last<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span>, notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#findLast.findLast-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  650. <li class="tsd-description">
  651. <div class="tsd-comment tsd-typography"><p>Returns the last value for which the <code>predicate</code> returns true.</p>
  652. <p>Note: <code>predicate</code> will be called for each entry in reverse.</p>
  653. </div>
  654. <div class="tsd-parameters">
  655. <h4 class="tsd-parameters-title">Parameters</h4>
  656. <ul class="tsd-parameter-list">
  657. <li>
  658. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  659. <ul class="tsd-parameters">
  660. <li class="tsd-parameter-signature">
  661. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  662. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  663. <li class="tsd-description">
  664. <div class="tsd-parameters">
  665. <h4 class="tsd-parameters-title">Parameters</h4>
  666. <ul class="tsd-parameter-list">
  667. <li>
  668. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  669. <li>
  670. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  671. <li>
  672. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  673. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  674. <li>
  675. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li>
  676. <li>
  677. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  678. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  679. <p>Inherited from Seq.findLast</p>
  680. <ul>
  681. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4694</li></ul></aside></li></ul></section>
  682. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findLastEntry" class="tsd-anchor"></a>
  683. <h3 class="tsd-anchor-link"><span>find<wbr/>Last<wbr/>Entry</span><a href="#findLastEntry" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  684. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  685. <li class="tsd-signature tsd-anchor-link" id="findLastEntry.findLastEntry-1">find<wbr/>Last<wbr/>Entry<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span>, notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span><a href="#findLastEntry.findLastEntry-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  686. <li class="tsd-description">
  687. <div class="tsd-comment tsd-typography"><p>Returns the last [key, value] entry for which the <code>predicate</code>
  688. returns true.</p>
  689. <p>Note: <code>predicate</code> will be called for each entry in reverse.</p>
  690. </div>
  691. <div class="tsd-parameters">
  692. <h4 class="tsd-parameters-title">Parameters</h4>
  693. <ul class="tsd-parameter-list">
  694. <li>
  695. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  696. <ul class="tsd-parameters">
  697. <li class="tsd-parameter-signature">
  698. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  699. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  700. <li class="tsd-description">
  701. <div class="tsd-parameters">
  702. <h4 class="tsd-parameters-title">Parameters</h4>
  703. <ul class="tsd-parameter-list">
  704. <li>
  705. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  706. <li>
  707. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  708. <li>
  709. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  710. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  711. <li>
  712. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li>
  713. <li>
  714. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  715. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  716. <p>Inherited from Seq.findLastEntry</p>
  717. <ul>
  718. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4715</li></ul></aside></li></ul></section>
  719. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findLastIndex" class="tsd-anchor"></a>
  720. <h3 class="tsd-anchor-link"><span>find<wbr/>Last<wbr/>Index</span><a href="#findLastIndex" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  721. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  722. <li class="tsd-signature tsd-anchor-link" id="findLastIndex.findLastIndex-1">find<wbr/>Last<wbr/>Index<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#findLastIndex.findLastIndex-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  723. <li class="tsd-description">
  724. <div class="tsd-comment tsd-typography"><p>Returns the last index in the Collection where a value satisfies the
  725. provided predicate function. Otherwise -1 is returned.</p>
  726. </div>
  727. <div class="tsd-parameters">
  728. <h4 class="tsd-parameters-title">Parameters</h4>
  729. <ul class="tsd-parameter-list">
  730. <li>
  731. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  732. <ul class="tsd-parameters">
  733. <li class="tsd-parameter-signature">
  734. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  735. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  736. <li class="tsd-description">
  737. <div class="tsd-parameters">
  738. <h4 class="tsd-parameters-title">Parameters</h4>
  739. <ul class="tsd-parameter-list">
  740. <li>
  741. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  742. <li>
  743. <h5>index: <span class="tsd-signature-type">number</span></h5></li>
  744. <li>
  745. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  746. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  747. <li>
  748. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  749. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  750. <p>Inherited from Collection.Indexed.findLastIndex</p>
  751. <ul>
  752. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3712</li></ul></aside></li></ul></section>
  753. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="findLastKey" class="tsd-anchor"></a>
  754. <h3 class="tsd-anchor-link"><span>find<wbr/>Last<wbr/>Key</span><a href="#findLastKey" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  755. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  756. <li class="tsd-signature tsd-anchor-link" id="findLastKey.findLastKey-1">find<wbr/>Last<wbr/>Key<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><a href="#findLastKey.findLastKey-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  757. <li class="tsd-description">
  758. <div class="tsd-comment tsd-typography"><p>Returns the last key for which the <code>predicate</code> returns true.</p>
  759. <p>Note: <code>predicate</code> will be called for each entry in reverse.</p>
  760. </div>
  761. <div class="tsd-parameters">
  762. <h4 class="tsd-parameters-title">Parameters</h4>
  763. <ul class="tsd-parameter-list">
  764. <li>
  765. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  766. <ul class="tsd-parameters">
  767. <li class="tsd-parameter-signature">
  768. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  769. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  770. <li class="tsd-description">
  771. <div class="tsd-parameters">
  772. <h4 class="tsd-parameters-title">Parameters</h4>
  773. <ul class="tsd-parameter-list">
  774. <li>
  775. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  776. <li>
  777. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  778. <li>
  779. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  780. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  781. <li>
  782. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  783. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  784. <p>Inherited from Seq.findLastKey</p>
  785. <ul>
  786. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4734</li></ul></aside></li></ul></section>
  787. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="first" class="tsd-anchor"></a>
  788. <h3 class="tsd-anchor-link"><span>first</span><a href="#first" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  789. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  790. <li class="tsd-signature tsd-anchor-link" id="first.first-1">first<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><a href="#first.first-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  791. <li class="tsd-description">
  792. <div class="tsd-comment tsd-typography"><p>In case the <code>Collection</code> is not empty returns the first element of the
  793. <code>Collection</code>.
  794. In case the <code>Collection</code> is empty returns the optional default
  795. value if provided, if no default value is provided returns undefined.</p>
  796. </div>
  797. <div class="tsd-type-parameters">
  798. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  799. <ul class="tsd-type-parameters">
  800. <li>
  801. <h4>NSV = <span class="tsd-signature-type">undefined</span></h4></li></ul></div>
  802. <div class="tsd-parameters">
  803. <h4 class="tsd-parameters-title">Parameters</h4>
  804. <ul class="tsd-parameter-list">
  805. <li>
  806. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h5></li></ul></div>
  807. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h4><aside class="tsd-sources">
  808. <p>Inherited from Seq.first</p>
  809. <ul>
  810. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3978</li></ul></aside></li></ul></section>
  811. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="flatMap" class="tsd-anchor"></a>
  812. <h3 class="tsd-anchor-link"><span>flat<wbr/>Map</span><a href="#flatMap" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  813. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  814. <li class="tsd-signature tsd-anchor-link" id="flatMap.flatMap-1">flat<wbr/>Map<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>mapper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><a href="#flatMap.flatMap-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  815. <li class="tsd-description">
  816. <div class="tsd-comment tsd-typography"><p>Flat-maps the Seq, returning a a Seq of the same type.</p>
  817. <p>Similar to <code>seq.map(...).flatten(true)</code>.</p>
  818. </div>
  819. <div class="tsd-type-parameters">
  820. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  821. <ul class="tsd-type-parameters">
  822. <li>
  823. <h4>M</h4></li></ul></div>
  824. <div class="tsd-parameters">
  825. <h4 class="tsd-parameters-title">Parameters</h4>
  826. <ul class="tsd-parameter-list">
  827. <li>
  828. <h5>mapper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span></h5>
  829. <ul class="tsd-parameters">
  830. <li class="tsd-parameter-signature">
  831. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  832. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span></li>
  833. <li class="tsd-description">
  834. <div class="tsd-parameters">
  835. <h4 class="tsd-parameters-title">Parameters</h4>
  836. <ul class="tsd-parameter-list">
  837. <li>
  838. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  839. <li>
  840. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  841. <li>
  842. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  843. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span></h4></li></ul></li></ul></li>
  844. <li>
  845. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  846. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  847. <p>Overrides Seq.flatMap</p>
  848. <ul>
  849. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2940</li></ul></aside></li></ul></section>
  850. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="flatten" class="tsd-anchor"></a>
  851. <h3 class="tsd-anchor-link"><span>flatten</span><a href="#flatten" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  852. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  853. <li class="tsd-signature tsd-anchor-link" id="flatten.flatten-1">flatten<span class="tsd-signature-symbol">(</span>depth<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><a href="#flatten.flatten-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  854. <li class="tsd-description">
  855. <div class="tsd-comment tsd-typography"><p>Flattens nested Collections.</p>
  856. <p>Will deeply flatten the Collection by default, returning a Collection of the
  857. same type, but a <code>depth</code> can be provided in the form of a number or
  858. boolean (where true means to shallowly flatten one level). A depth of 0
  859. (or shallow: false) will deeply flatten.</p>
  860. <p>Flattens only others Collection, not Arrays or Objects.</p>
  861. <p>Note: <code>flatten(true)</code> operates on Collection&lt;unknown, Collection&lt;K, V&gt;&gt; and
  862. returns Collection&lt;K, V&gt;</p>
  863. </div>
  864. <div class="tsd-parameters">
  865. <h4 class="tsd-parameters-title">Parameters</h4>
  866. <ul class="tsd-parameter-list">
  867. <li>
  868. <h5><code class="tsd-tag ts-flagOptional">Optional</code> depth: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  869. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  870. <p>Inherited from Seq.flatten</p>
  871. <ul>
  872. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4561</li></ul></aside></li>
  873. <li class="tsd-signature tsd-anchor-link" id="flatten.flatten-2">flatten<span class="tsd-signature-symbol">(</span>shallow<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><a href="#flatten.flatten-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  874. <li class="tsd-description">
  875. <div class="tsd-parameters">
  876. <h4 class="tsd-parameters-title">Parameters</h4>
  877. <ul class="tsd-parameter-list">
  878. <li>
  879. <h5><code class="tsd-tag ts-flagOptional">Optional</code> shallow: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
  880. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  881. <p>Inherited from Seq.flatten</p>
  882. <ul>
  883. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4563</li></ul></aside></li></ul></section>
  884. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="forEach" class="tsd-anchor"></a>
  885. <h3 class="tsd-anchor-link"><span>for<wbr/>Each</span><a href="#forEach" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  886. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  887. <li class="tsd-signature tsd-anchor-link" id="forEach.forEach-1">for<wbr/>Each<span class="tsd-signature-symbol">(</span>sideEffect<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#forEach.forEach-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  888. <li class="tsd-description">
  889. <div class="tsd-comment tsd-typography"><p>The <code>sideEffect</code> is executed for every entry in the Collection.</p>
  890. <p>Unlike <code>Array#forEach</code>, if any call of <code>sideEffect</code> returns
  891. <code>false</code>, the iteration will stop. Returns the number of entries iterated
  892. (including the last iteration which returned false).</p>
  893. </div>
  894. <div class="tsd-parameters">
  895. <h4 class="tsd-parameters-title">Parameters</h4>
  896. <ul class="tsd-parameter-list">
  897. <li>
  898. <h5>sideEffect: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span></h5>
  899. <ul class="tsd-parameters">
  900. <li class="tsd-parameter-signature">
  901. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  902. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span></li>
  903. <li class="tsd-description">
  904. <div class="tsd-parameters">
  905. <h4 class="tsd-parameters-title">Parameters</h4>
  906. <ul class="tsd-parameter-list">
  907. <li>
  908. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  909. <li>
  910. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  911. <li>
  912. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  913. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">unknown</span></h4></li></ul></li></ul></li>
  914. <li>
  915. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  916. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  917. <p>Inherited from Seq.forEach</p>
  918. <ul>
  919. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4406</li></ul></aside></li></ul></section>
  920. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="fromEntrySeq" class="tsd-anchor"></a>
  921. <h3 class="tsd-anchor-link"><span>from<wbr/>Entry<wbr/>Seq</span><a href="#fromEntrySeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  922. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  923. <li class="tsd-signature tsd-anchor-link" id="fromEntrySeq.fromEntrySeq-1">from<wbr/>Entry<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><a href="#fromEntrySeq.fromEntrySeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  924. <li class="tsd-description">
  925. <div class="tsd-comment tsd-typography"><p>If this is a collection of [key, value] entry tuples, it will return a
  926. Seq.Keyed of those entries.</p>
  927. </div>
  928. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  929. <p>Inherited from Collection.Indexed.fromEntrySeq</p>
  930. <ul>
  931. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3543</li></ul></aside></li></ul></section>
  932. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="get" class="tsd-anchor"></a>
  933. <h3 class="tsd-anchor-link"><span>get</span><a href="#get" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  934. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  935. <li class="tsd-signature tsd-anchor-link" id="get.get-1">get<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, notSetValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><a href="#get.get-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  936. <li class="tsd-description">
  937. <div class="tsd-comment tsd-typography"><p>Returns the value associated with the provided key, or notSetValue if
  938. the Collection does not contain this key.</p>
  939. <p>Note: it is possible a key may be associated with an <code>undefined</code> value,
  940. so if <code>notSetValue</code> is not provided and this method returns <code>undefined</code>,
  941. that does not guarantee the key was not found.</p>
  942. </div>
  943. <div class="tsd-type-parameters">
  944. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  945. <ul class="tsd-type-parameters">
  946. <li>
  947. <h4>NSV</h4></li></ul></div>
  948. <div class="tsd-parameters">
  949. <h4 class="tsd-parameters-title">Parameters</h4>
  950. <ul class="tsd-parameter-list">
  951. <li>
  952. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  953. <li>
  954. <h5>notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h5></li></ul></div>
  955. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h4><aside class="tsd-sources">
  956. <p>Inherited from Seq.get</p>
  957. <ul>
  958. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3955</li></ul></aside></li>
  959. <li class="tsd-signature tsd-anchor-link" id="get.get-2">get<span class="tsd-signature-symbol">(</span>key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#get.get-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  960. <li class="tsd-description">
  961. <div class="tsd-parameters">
  962. <h4 class="tsd-parameters-title">Parameters</h4>
  963. <ul class="tsd-parameter-list">
  964. <li>
  965. <h5>key: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  966. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  967. <p>Inherited from Seq.get</p>
  968. <ul>
  969. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3956</li></ul></aside></li></ul></section>
  970. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getIn" class="tsd-anchor"></a>
  971. <h3 class="tsd-anchor-link"><span>get<wbr/>In</span><a href="#getIn" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  972. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  973. <li class="tsd-signature tsd-anchor-link" id="getIn.getIn-1">get<wbr/>In<span class="tsd-signature-symbol">(</span>searchKeyPath<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span>, notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><a href="#getIn.getIn-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  974. <li class="tsd-description">
  975. <div class="tsd-comment tsd-typography"><p>Returns the value found by following a path of keys or indices through
  976. nested Collections.</p>
  977. <!-- runkit:activate -->
  978. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1">, </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">deepData</span><span class="hl-1"> = </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">x:</span><span class="hl-1"> </span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">y:</span><span class="hl-1"> </span><span class="hl-8">123</span><span class="hl-1"> }) ]) });</span><br/><span class="hl-0">deepData</span><span class="hl-1">.</span><span class="hl-6">getIn</span><span class="hl-1">([</span><span class="hl-4">&#39;x&#39;</span><span class="hl-1">, </span><span class="hl-8">0</span><span class="hl-1">, </span><span class="hl-4">&#39;y&#39;</span><span class="hl-1">]) </span><span class="hl-9">// 123</span>
  979. </code></pre>
  980. <p>Plain JavaScript Object or Arrays may be nested within an Immutable.js
  981. Collection, and getIn() can access those values as well:</p>
  982. <!-- runkit:activate -->
  983. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1">, </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">deepData</span><span class="hl-1"> = </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">x:</span><span class="hl-1"> [ { </span><span class="hl-0">y:</span><span class="hl-1"> </span><span class="hl-8">123</span><span class="hl-1"> } ] });</span><br/><span class="hl-0">deepData</span><span class="hl-1">.</span><span class="hl-6">getIn</span><span class="hl-1">([</span><span class="hl-4">&#39;x&#39;</span><span class="hl-1">, </span><span class="hl-8">0</span><span class="hl-1">, </span><span class="hl-4">&#39;y&#39;</span><span class="hl-1">]) </span><span class="hl-9">// 123</span>
  984. </code></pre>
  985. </div>
  986. <div class="tsd-parameters">
  987. <h4 class="tsd-parameters-title">Parameters</h4>
  988. <ul class="tsd-parameter-list">
  989. <li>
  990. <h5>searchKeyPath: <a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h5></li>
  991. <li>
  992. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  993. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">unknown</span></h4><aside class="tsd-sources">
  994. <p>Inherited from Seq.getIn</p>
  995. <ul>
  996. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4011</li></ul></aside></li></ul></section>
  997. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="groupBy" class="tsd-anchor"></a>
  998. <h3 class="tsd-anchor-link"><span>group<wbr/>By</span><a href="#groupBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  999. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1000. <li class="tsd-signature tsd-anchor-link" id="groupBy.groupBy-1">group<wbr/>By<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>grouper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">, </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span><a href="#groupBy.groupBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1001. <li class="tsd-description">
  1002. <div class="tsd-comment tsd-typography"><p>Returns a <code>Collection.Keyed</code> of <code>Collection.Keyeds</code>, grouped by the return
  1003. value of the <code>grouper</code> function.</p>
  1004. <p>Note: This is always an eager operation.</p>
  1005. <!-- runkit:activate -->
  1006. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1">, </span><span class="hl-5">Map</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">listOfMaps</span><span class="hl-1"> = </span><span class="hl-6">List</span><span class="hl-1">([</span><br/><span class="hl-1"> </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">v:</span><span class="hl-1"> </span><span class="hl-8">0</span><span class="hl-1"> }),</span><br/><span class="hl-1"> </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">v:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1"> }),</span><br/><span class="hl-1"> </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">v:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1"> }),</span><br/><span class="hl-1"> </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">v:</span><span class="hl-1"> </span><span class="hl-8">0</span><span class="hl-1"> }),</span><br/><span class="hl-1"> </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">v:</span><span class="hl-1"> </span><span class="hl-8">2</span><span class="hl-1"> })</span><br/><span class="hl-1">])</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">groupsOfMaps</span><span class="hl-1"> = </span><span class="hl-0">listOfMaps</span><span class="hl-1">.</span><span class="hl-6">groupBy</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1">.</span><span class="hl-6">get</span><span class="hl-1">(</span><span class="hl-4">&#39;v&#39;</span><span class="hl-1">))</span><br/><span class="hl-9">// Map {</span><br/><span class="hl-9">// 0: List [ Map{ &quot;v&quot;: 0 }, Map { &quot;v&quot;: 0 } ],</span><br/><span class="hl-9">// 1: List [ Map{ &quot;v&quot;: 1 }, Map { &quot;v&quot;: 1 } ],</span><br/><span class="hl-9">// 2: List [ Map{ &quot;v&quot;: 2 } ],</span><br/><span class="hl-9">// }</span>
  1007. </code></pre>
  1008. </div>
  1009. <div class="tsd-type-parameters">
  1010. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1011. <ul class="tsd-type-parameters">
  1012. <li>
  1013. <h4>G</h4></li></ul></div>
  1014. <div class="tsd-parameters">
  1015. <h4 class="tsd-parameters-title">Parameters</h4>
  1016. <ul class="tsd-parameter-list">
  1017. <li>
  1018. <h5>grouper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">)</span></h5>
  1019. <ul class="tsd-parameters">
  1020. <li class="tsd-parameter-signature">
  1021. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1022. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span></li>
  1023. <li class="tsd-description">
  1024. <div class="tsd-parameters">
  1025. <h4 class="tsd-parameters-title">Parameters</h4>
  1026. <ul class="tsd-parameter-list">
  1027. <li>
  1028. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1029. <li>
  1030. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1031. <li>
  1032. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1033. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span></h4></li></ul></li></ul></li>
  1034. <li>
  1035. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1036. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">G</span><span class="tsd-signature-symbol">, </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1037. <p>Inherited from Seq.groupBy</p>
  1038. <ul>
  1039. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4392</li></ul></aside></li></ul></section>
  1040. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="has" class="tsd-anchor"></a>
  1041. <h3 class="tsd-anchor-link"><span>has</span><a href="#has" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1042. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1043. <li class="tsd-signature tsd-anchor-link" id="has.has-1">has<span class="tsd-signature-symbol">(</span>key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#has.has-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1044. <li class="tsd-description">
  1045. <div class="tsd-comment tsd-typography"><p>True if a key exists within this <code>Collection</code>, using <code>Immutable.is</code>
  1046. to determine equality</p>
  1047. </div>
  1048. <div class="tsd-parameters">
  1049. <h4 class="tsd-parameters-title">Parameters</h4>
  1050. <ul class="tsd-parameter-list">
  1051. <li>
  1052. <h5>key: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  1053. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1054. <p>Inherited from Seq.has</p>
  1055. <ul>
  1056. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3962</li></ul></aside></li></ul></section>
  1057. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasIn" class="tsd-anchor"></a>
  1058. <h3 class="tsd-anchor-link"><span>has<wbr/>In</span><a href="#hasIn" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1059. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1060. <li class="tsd-signature tsd-anchor-link" id="hasIn.hasIn-1">has<wbr/>In<span class="tsd-signature-symbol">(</span>searchKeyPath<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasIn.hasIn-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1061. <li class="tsd-description">
  1062. <div class="tsd-comment tsd-typography"><p>True if the result of following a path of keys or indices through nested
  1063. Collections results in a set value.</p>
  1064. </div>
  1065. <div class="tsd-parameters">
  1066. <h4 class="tsd-parameters-title">Parameters</h4>
  1067. <ul class="tsd-parameter-list">
  1068. <li>
  1069. <h5>searchKeyPath: <a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1070. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1071. <p>Inherited from Seq.hasIn</p>
  1072. <ul>
  1073. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4017</li></ul></aside></li></ul></section>
  1074. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hashCode" class="tsd-anchor"></a>
  1075. <h3 class="tsd-anchor-link"><span>hash<wbr/>Code</span><a href="#hashCode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1076. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1077. <li class="tsd-signature tsd-anchor-link" id="hashCode.hashCode-1">hash<wbr/>Code<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#hashCode.hashCode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1078. <li class="tsd-description">
  1079. <div class="tsd-comment tsd-typography"><p>Computes and returns the hashed identity for this Collection.</p>
  1080. <p>The <code>hashCode</code> of a Collection is used to determine potential equality,
  1081. and is used when adding this to a <code>Set</code> or as a key in a <code>Map</code>, enabling
  1082. lookup via a different instance.</p>
  1083. <!-- runkit:activate
  1084. { "preamble": "const { Set, List } = require('immutable')" }
  1085. -->
  1086. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">a</span><span class="hl-1"> = </span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">b</span><span class="hl-1"> = </span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]);</span><br/><span class="hl-0">assert</span><span class="hl-1">.</span><span class="hl-6">notStrictEqual</span><span class="hl-1">(</span><span class="hl-0">a</span><span class="hl-1">, </span><span class="hl-0">b</span><span class="hl-1">); </span><span class="hl-9">// different instances</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">set</span><span class="hl-1"> = </span><span class="hl-3">Set</span><span class="hl-1">([ </span><span class="hl-0">a</span><span class="hl-1"> ]);</span><br/><span class="hl-0">assert</span><span class="hl-1">.</span><span class="hl-6">equal</span><span class="hl-1">(</span><span class="hl-0">set</span><span class="hl-1">.</span><span class="hl-6">has</span><span class="hl-1">(</span><span class="hl-0">b</span><span class="hl-1">), </span><span class="hl-2">true</span><span class="hl-1">);</span>
  1087. </code></pre>
  1088. <p>If two values have the same <code>hashCode</code>, they are <a href="https://en.wikipedia.org/wiki/Collision_(computer_science)">not guaranteed
  1089. to be equal</a>. If two values have different <code>hashCode</code>s,
  1090. they must not be equal.</p>
  1091. </div>
  1092. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  1093. <p>Inherited from Seq.hashCode</p>
  1094. <ul>
  1095. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3943</li></ul></aside></li></ul></section>
  1096. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="includes" class="tsd-anchor"></a>
  1097. <h3 class="tsd-anchor-link"><span>includes</span><a href="#includes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1098. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1099. <li class="tsd-signature tsd-anchor-link" id="includes.includes-1">includes<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#includes.includes-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1100. <li class="tsd-description">
  1101. <div class="tsd-comment tsd-typography"><p>True if a value exists within this <code>Collection</code>, using <code>Immutable.is</code>
  1102. to determine equality</p>
  1103. <h3>Alias</h3><p>contains</p>
  1104. </div>
  1105. <div class="tsd-parameters">
  1106. <h4 class="tsd-parameters-title">Parameters</h4>
  1107. <ul class="tsd-parameter-list">
  1108. <li>
  1109. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1110. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1111. <p>Inherited from Seq.includes</p>
  1112. <ul>
  1113. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3969</li></ul></aside></li></ul></section>
  1114. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="indexOf" class="tsd-anchor"></a>
  1115. <h3 class="tsd-anchor-link"><span>index<wbr/>Of</span><a href="#indexOf" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1116. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1117. <li class="tsd-signature tsd-anchor-link" id="indexOf.indexOf-1">index<wbr/>Of<span class="tsd-signature-symbol">(</span>searchValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#indexOf.indexOf-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1118. <li class="tsd-description">
  1119. <div class="tsd-comment tsd-typography"><p>Returns the first index at which a given value can be found in the
  1120. Collection, or -1 if it is not present.</p>
  1121. </div>
  1122. <div class="tsd-parameters">
  1123. <h4 class="tsd-parameters-title">Parameters</h4>
  1124. <ul class="tsd-parameter-list">
  1125. <li>
  1126. <h5>searchValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1127. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  1128. <p>Inherited from Collection.Indexed.indexOf</p>
  1129. <ul>
  1130. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3691</li></ul></aside></li></ul></section>
  1131. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="interleave" class="tsd-anchor"></a>
  1132. <h3 class="tsd-anchor-link"><span>interleave</span><a href="#interleave" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1133. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1134. <li class="tsd-signature tsd-anchor-link" id="interleave.interleave-1">interleave<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>collections<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#interleave.interleave-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1135. <li class="tsd-description">
  1136. <div class="tsd-comment tsd-typography"><p>Returns a Collection of the same type with the provided <code>collections</code>
  1137. interleaved into this collection.</p>
  1138. <p>The resulting Collection includes the first item from each, then the
  1139. second from each, etc.</p>
  1140. <!-- runkit:activate
  1141. { "preamble": "require('immutable')"}
  1142. -->
  1143. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]).</span><span class="hl-6">interleave</span><span class="hl-1">(</span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;A&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;B&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;C&#39;</span><span class="hl-1"> ]))</span><br/><span class="hl-9">// List [ 1, &quot;A&quot;, 2, &quot;B&quot;, 3, &quot;C&quot; ]</span>
  1144. </code></pre>
  1145. <p>The shortest Collection stops interleave.</p>
  1146. <!-- runkit:activate
  1147. { "preamble": "const { List } = require('immutable')" }
  1148. -->
  1149. <pre><code class="language-js"><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]).</span><span class="hl-6">interleave</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;A&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;B&#39;</span><span class="hl-1"> ]),</span><br/><span class="hl-1"> </span><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;X&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;Y&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;Z&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-1">)</span><br/><span class="hl-9">// List [ 1, &quot;A&quot;, &quot;X&quot;, 2, &quot;B&quot;, &quot;Y&quot; ]</span>
  1150. </code></pre>
  1151. <p>Since <code>interleave()</code> re-indexes values, it produces a complete copy,
  1152. which has <code>O(N)</code> complexity.</p>
  1153. <p>Note: <code>interleave</code> <em>cannot</em> be used in <code>withMutations</code>.</p>
  1154. </div>
  1155. <div class="tsd-parameters">
  1156. <h4 class="tsd-parameters-title">Parameters</h4>
  1157. <ul class="tsd-parameter-list">
  1158. <li>
  1159. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>collections: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  1160. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1161. <p>Inherited from Collection.Indexed.interleave</p>
  1162. <ul>
  1163. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3587</li></ul></aside></li></ul></section>
  1164. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="interpose" class="tsd-anchor"></a>
  1165. <h3 class="tsd-anchor-link"><span>interpose</span><a href="#interpose" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1166. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1167. <li class="tsd-signature tsd-anchor-link" id="interpose.interpose-1">interpose<span class="tsd-signature-symbol">(</span>separator<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#interpose.interpose-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1168. <li class="tsd-description">
  1169. <div class="tsd-comment tsd-typography"><p>Returns a Collection of the same type with <code>separator</code> between each item
  1170. in this Collection.</p>
  1171. </div>
  1172. <div class="tsd-parameters">
  1173. <h4 class="tsd-parameters-title">Parameters</h4>
  1174. <ul class="tsd-parameter-list">
  1175. <li>
  1176. <h5>separator: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1177. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1178. <p>Inherited from Collection.Indexed.interpose</p>
  1179. <ul>
  1180. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3551</li></ul></aside></li></ul></section>
  1181. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isEmpty" class="tsd-anchor"></a>
  1182. <h3 class="tsd-anchor-link"><span>is<wbr/>Empty</span><a href="#isEmpty" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1183. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1184. <li class="tsd-signature tsd-anchor-link" id="isEmpty.isEmpty-1">is<wbr/>Empty<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isEmpty.isEmpty-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1185. <li class="tsd-description">
  1186. <div class="tsd-comment tsd-typography"><p>Returns true if this Collection includes no values.</p>
  1187. <p>For some lazy <code>Seq</code>, <code>isEmpty</code> might need to iterate to determine
  1188. emptiness. At most one iteration will occur.</p>
  1189. </div>
  1190. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1191. <p>Inherited from Seq.isEmpty</p>
  1192. <ul>
  1193. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4649</li></ul></aside></li></ul></section>
  1194. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isSubset" class="tsd-anchor"></a>
  1195. <h3 class="tsd-anchor-link"><span>is<wbr/>Subset</span><a href="#isSubset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1196. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1197. <li class="tsd-signature tsd-anchor-link" id="isSubset.isSubset-1">is<wbr/>Subset<span class="tsd-signature-symbol">(</span>iter<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isSubset.isSubset-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1198. <li class="tsd-description">
  1199. <div class="tsd-comment tsd-typography"><p>True if <code>iter</code> includes every value in this Collection.</p>
  1200. </div>
  1201. <div class="tsd-parameters">
  1202. <h4 class="tsd-parameters-title">Parameters</h4>
  1203. <ul class="tsd-parameter-list">
  1204. <li>
  1205. <h5>iter: <a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1206. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1207. <p>Inherited from Seq.isSubset</p>
  1208. <ul>
  1209. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4828</li></ul></aside></li></ul></section>
  1210. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isSuperset" class="tsd-anchor"></a>
  1211. <h3 class="tsd-anchor-link"><span>is<wbr/>Superset</span><a href="#isSuperset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1212. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1213. <li class="tsd-signature tsd-anchor-link" id="isSuperset.isSuperset-1">is<wbr/>Superset<span class="tsd-signature-symbol">(</span>iter<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isSuperset.isSuperset-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1214. <li class="tsd-description">
  1215. <div class="tsd-comment tsd-typography"><p>True if this Collection includes every value in <code>iter</code>.</p>
  1216. </div>
  1217. <div class="tsd-parameters">
  1218. <h4 class="tsd-parameters-title">Parameters</h4>
  1219. <ul class="tsd-parameter-list">
  1220. <li>
  1221. <h5>iter: <a href="RcsbFv3DAssembly._internal_.Iterable.html" class="tsd-signature-type" data-tsd-kind="Interface">Iterable</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1222. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1223. <p>Inherited from Seq.isSuperset</p>
  1224. <ul>
  1225. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4833</li></ul></aside></li></ul></section>
  1226. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="join" class="tsd-anchor"></a>
  1227. <h3 class="tsd-anchor-link"><span>join</span><a href="#join" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1228. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1229. <li class="tsd-signature tsd-anchor-link" id="join.join-1">join<span class="tsd-signature-symbol">(</span>separator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#join.join-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1230. <li class="tsd-description">
  1231. <div class="tsd-comment tsd-typography"><p>Joins values together as a string, inserting a separator between each.
  1232. The default separator is <code>&quot;,&quot;</code>.</p>
  1233. </div>
  1234. <div class="tsd-parameters">
  1235. <h4 class="tsd-parameters-title">Parameters</h4>
  1236. <ul class="tsd-parameter-list">
  1237. <li>
  1238. <h5><code class="tsd-tag ts-flagOptional">Optional</code> separator: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  1239. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
  1240. <p>Inherited from Seq.join</p>
  1241. <ul>
  1242. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4641</li></ul></aside></li></ul></section>
  1243. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="keyOf" class="tsd-anchor"></a>
  1244. <h3 class="tsd-anchor-link"><span>key<wbr/>Of</span><a href="#keyOf" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1245. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1246. <li class="tsd-signature tsd-anchor-link" id="keyOf.keyOf-1">key<wbr/>Of<span class="tsd-signature-symbol">(</span>searchValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><a href="#keyOf.keyOf-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1247. <li class="tsd-description">
  1248. <div class="tsd-comment tsd-typography"><p>Returns the key associated with the search value, or undefined.</p>
  1249. </div>
  1250. <div class="tsd-parameters">
  1251. <h4 class="tsd-parameters-title">Parameters</h4>
  1252. <ul class="tsd-parameter-list">
  1253. <li>
  1254. <h5>searchValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1255. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  1256. <p>Inherited from Seq.keyOf</p>
  1257. <ul>
  1258. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4742</li></ul></aside></li></ul></section>
  1259. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="keySeq" class="tsd-anchor"></a>
  1260. <h3 class="tsd-anchor-link"><span>key<wbr/>Seq</span><a href="#keySeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1261. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1262. <li class="tsd-signature tsd-anchor-link" id="keySeq.keySeq-1">key<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span><a href="#keySeq.keySeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1263. <li class="tsd-description">
  1264. <div class="tsd-comment tsd-typography"><p>Returns a new Seq.Indexed of the keys of this Collection,
  1265. discarding values.</p>
  1266. </div>
  1267. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1268. <p>Inherited from Seq.keySeq</p>
  1269. <ul>
  1270. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4219</li></ul></aside></li></ul></section>
  1271. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="keys" class="tsd-anchor"></a>
  1272. <h3 class="tsd-anchor-link"><span>keys</span><a href="#keys" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1273. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1274. <li class="tsd-signature tsd-anchor-link" id="keys.keys-1">keys<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span><a href="#keys.keys-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1275. <li class="tsd-description">
  1276. <div class="tsd-comment tsd-typography"><p>An iterator of this <code>Collection</code>&#39;s keys.</p>
  1277. <p>Note: this will return an ES6 iterator which does not support
  1278. Immutable.js sequence algorithms. Use <code>keySeq</code> instead, if this is
  1279. what you want.</p>
  1280. </div>
  1281. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1282. <p>Inherited from Seq.keys</p>
  1283. <ul>
  1284. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4191</li></ul></aside></li></ul></section>
  1285. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="last" class="tsd-anchor"></a>
  1286. <h3 class="tsd-anchor-link"><span>last</span><a href="#last" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1287. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1288. <li class="tsd-signature tsd-anchor-link" id="last.last-1">last<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>notSetValue<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span><a href="#last.last-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1289. <li class="tsd-description">
  1290. <div class="tsd-comment tsd-typography"><p>In case the <code>Collection</code> is not empty returns the last element of the
  1291. <code>Collection</code>.
  1292. In case the <code>Collection</code> is empty returns the optional default
  1293. value if provided, if no default value is provided returns undefined.</p>
  1294. </div>
  1295. <div class="tsd-type-parameters">
  1296. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1297. <ul class="tsd-type-parameters">
  1298. <li>
  1299. <h4>NSV = <span class="tsd-signature-type">undefined</span></h4></li></ul></div>
  1300. <div class="tsd-parameters">
  1301. <h4 class="tsd-parameters-title">Parameters</h4>
  1302. <ul class="tsd-parameter-list">
  1303. <li>
  1304. <h5><code class="tsd-tag ts-flagOptional">Optional</code> notSetValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h5></li></ul></div>
  1305. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">NSV</span></h4><aside class="tsd-sources">
  1306. <p>Inherited from Seq.last</p>
  1307. <ul>
  1308. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3986</li></ul></aside></li></ul></section>
  1309. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lastIndexOf" class="tsd-anchor"></a>
  1310. <h3 class="tsd-anchor-link"><span>last<wbr/>Index<wbr/>Of</span><a href="#lastIndexOf" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1311. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1312. <li class="tsd-signature tsd-anchor-link" id="lastIndexOf.lastIndexOf-1">last<wbr/>Index<wbr/>Of<span class="tsd-signature-symbol">(</span>searchValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#lastIndexOf.lastIndexOf-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1313. <li class="tsd-description">
  1314. <div class="tsd-comment tsd-typography"><p>Returns the last index at which a given value can be found in the
  1315. Collection, or -1 if it is not present.</p>
  1316. </div>
  1317. <div class="tsd-parameters">
  1318. <h4 class="tsd-parameters-title">Parameters</h4>
  1319. <ul class="tsd-parameter-list">
  1320. <li>
  1321. <h5>searchValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1322. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  1323. <p>Inherited from Collection.Indexed.lastIndexOf</p>
  1324. <ul>
  1325. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3697</li></ul></aside></li></ul></section>
  1326. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lastKeyOf" class="tsd-anchor"></a>
  1327. <h3 class="tsd-anchor-link"><span>last<wbr/>Key<wbr/>Of</span><a href="#lastKeyOf" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1328. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1329. <li class="tsd-signature tsd-anchor-link" id="lastKeyOf.lastKeyOf-1">last<wbr/>Key<wbr/>Of<span class="tsd-signature-symbol">(</span>searchValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><a href="#lastKeyOf.lastKeyOf-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1330. <li class="tsd-description">
  1331. <div class="tsd-comment tsd-typography"><p>Returns the last key associated with the search value, or undefined.</p>
  1332. </div>
  1333. <div class="tsd-parameters">
  1334. <h4 class="tsd-parameters-title">Parameters</h4>
  1335. <ul class="tsd-parameter-list">
  1336. <li>
  1337. <h5>searchValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1338. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  1339. <p>Inherited from Seq.lastKeyOf</p>
  1340. <ul>
  1341. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4747</li></ul></aside></li></ul></section>
  1342. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="map" class="tsd-anchor"></a>
  1343. <h3 class="tsd-anchor-link"><span>map</span><a href="#map" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1344. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  1345. <li class="tsd-signature tsd-anchor-link" id="map.map-1">map<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>mapper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span><a href="#map.map-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1346. <li class="tsd-description">
  1347. <div class="tsd-comment tsd-typography"><p>Returns a new Seq.Indexed with values passed through a
  1348. <code>mapper</code> function.</p>
  1349. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Seq</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-0">Seq</span><span class="hl-1">.</span><span class="hl-6">Indexed</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1"> ]).</span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-8">10</span><span class="hl-1"> * </span><span class="hl-0">x</span><span class="hl-1">)</span><br/><span class="hl-9">// Seq [ 10, 20 ]</span>
  1350. </code></pre>
  1351. <p>Note: <code>map()</code> always returns a new instance, even if it produced the
  1352. same value at every step.</p>
  1353. </div>
  1354. <div class="tsd-type-parameters">
  1355. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1356. <ul class="tsd-type-parameters">
  1357. <li>
  1358. <h4>M</h4></li></ul></div>
  1359. <div class="tsd-parameters">
  1360. <h4 class="tsd-parameters-title">Parameters</h4>
  1361. <ul class="tsd-parameter-list">
  1362. <li>
  1363. <h5>mapper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">)</span></h5>
  1364. <ul class="tsd-parameters">
  1365. <li class="tsd-parameter-signature">
  1366. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1367. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span></li>
  1368. <li class="tsd-description">
  1369. <div class="tsd-parameters">
  1370. <h4 class="tsd-parameters-title">Parameters</h4>
  1371. <ul class="tsd-parameter-list">
  1372. <li>
  1373. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1374. <li>
  1375. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1376. <li>
  1377. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1378. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span></h4></li></ul></li></ul></li>
  1379. <li>
  1380. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1381. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">M</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1382. <p>Overrides Seq.map</p>
  1383. <ul>
  1384. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2930</li></ul></aside></li></ul></section>
  1385. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="max" class="tsd-anchor"></a>
  1386. <h3 class="tsd-anchor-link"><span>max</span><a href="#max" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1387. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1388. <li class="tsd-signature tsd-anchor-link" id="max.max-1">max<span class="tsd-signature-symbol">(</span>comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#max.max-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1389. <li class="tsd-description">
  1390. <div class="tsd-comment tsd-typography"><p>Returns the maximum value in this collection. If any values are
  1391. comparatively equivalent, the first one found will be returned.</p>
  1392. <p>The <code>comparator</code> is used in the same way as <code>Collection#sort</code>. If it is not
  1393. provided, the default comparator is <code>&gt;</code>.</p>
  1394. <p>When two values are considered equivalent, the first encountered will be
  1395. returned. Otherwise, <code>max</code> will operate independent of the order of input
  1396. as long as the comparator is commutative. The default comparator <code>&gt;</code> is
  1397. commutative <em>only</em> when types do not differ.</p>
  1398. <p>If <code>comparator</code> returns 0 and either value is NaN, undefined, or null,
  1399. that value will be returned.</p>
  1400. </div>
  1401. <div class="tsd-parameters">
  1402. <h4 class="tsd-parameters-title">Parameters</h4>
  1403. <ul class="tsd-parameter-list">
  1404. <li>
  1405. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  1406. <ul class="tsd-parameters">
  1407. <li class="tsd-parameter-signature">
  1408. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1409. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  1410. <li class="tsd-description">
  1411. <div class="tsd-parameters">
  1412. <h4 class="tsd-parameters-title">Parameters</h4>
  1413. <ul class="tsd-parameter-list">
  1414. <li>
  1415. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1416. <li>
  1417. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1418. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  1419. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  1420. <p>Inherited from Seq.max</p>
  1421. <ul>
  1422. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4764</li></ul></aside></li></ul></section>
  1423. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="maxBy" class="tsd-anchor"></a>
  1424. <h3 class="tsd-anchor-link"><span>max<wbr/>By</span><a href="#maxBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1425. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1426. <li class="tsd-signature tsd-anchor-link" id="maxBy.maxBy-1">max<wbr/>By<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>comparatorValueMapper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span>, comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#maxBy.maxBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1427. <li class="tsd-description">
  1428. <div class="tsd-comment tsd-typography"><p>Like <code>max</code>, but also accepts a <code>comparatorValueMapper</code> which allows for
  1429. comparing by more sophisticated means:</p>
  1430. <!-- runkit:activate -->
  1431. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1">, } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">l</span><span class="hl-1"> = </span><span class="hl-6">List</span><span class="hl-1">([</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Bob&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1"> },</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Max&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">3</span><span class="hl-1"> },</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Lili&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">2</span><span class="hl-1"> } ,</span><br/><span class="hl-1">]);</span><br/><span class="hl-0">l</span><span class="hl-1">.</span><span class="hl-6">maxBy</span><span class="hl-1">(</span><span class="hl-0">i</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">i</span><span class="hl-1">.</span><span class="hl-0">avgHit</span><span class="hl-1">); </span><span class="hl-9">// will output { name: &#39;Max&#39;, avgHit: 3 }</span>
  1432. </code></pre>
  1433. </div>
  1434. <div class="tsd-type-parameters">
  1435. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1436. <ul class="tsd-type-parameters">
  1437. <li>
  1438. <h4>C</h4></li></ul></div>
  1439. <div class="tsd-parameters">
  1440. <h4 class="tsd-parameters-title">Parameters</h4>
  1441. <ul class="tsd-parameter-list">
  1442. <li>
  1443. <h5>comparatorValueMapper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span></h5>
  1444. <ul class="tsd-parameters">
  1445. <li class="tsd-parameter-signature">
  1446. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1447. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></li>
  1448. <li class="tsd-description">
  1449. <div class="tsd-parameters">
  1450. <h4 class="tsd-parameters-title">Parameters</h4>
  1451. <ul class="tsd-parameter-list">
  1452. <li>
  1453. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1454. <li>
  1455. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1456. <li>
  1457. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1458. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h4></li></ul></li></ul></li>
  1459. <li>
  1460. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  1461. <ul class="tsd-parameters">
  1462. <li class="tsd-parameter-signature">
  1463. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1464. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  1465. <li class="tsd-description">
  1466. <div class="tsd-parameters">
  1467. <h4 class="tsd-parameters-title">Parameters</h4>
  1468. <ul class="tsd-parameter-list">
  1469. <li>
  1470. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li>
  1471. <li>
  1472. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li></ul></div>
  1473. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  1474. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  1475. <p>Inherited from Seq.maxBy</p>
  1476. <ul>
  1477. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4781</li></ul></aside></li></ul></section>
  1478. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="min" class="tsd-anchor"></a>
  1479. <h3 class="tsd-anchor-link"><span>min</span><a href="#min" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1480. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1481. <li class="tsd-signature tsd-anchor-link" id="min.min-1">min<span class="tsd-signature-symbol">(</span>comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#min.min-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1482. <li class="tsd-description">
  1483. <div class="tsd-comment tsd-typography"><p>Returns the minimum value in this collection. If any values are
  1484. comparatively equivalent, the first one found will be returned.</p>
  1485. <p>The <code>comparator</code> is used in the same way as <code>Collection#sort</code>. If it is not
  1486. provided, the default comparator is <code>&lt;</code>.</p>
  1487. <p>When two values are considered equivalent, the first encountered will be
  1488. returned. Otherwise, <code>min</code> will operate independent of the order of input
  1489. as long as the comparator is commutative. The default comparator <code>&lt;</code> is
  1490. commutative <em>only</em> when types do not differ.</p>
  1491. <p>If <code>comparator</code> returns 0 and either value is NaN, undefined, or null,
  1492. that value will be returned.</p>
  1493. </div>
  1494. <div class="tsd-parameters">
  1495. <h4 class="tsd-parameters-title">Parameters</h4>
  1496. <ul class="tsd-parameter-list">
  1497. <li>
  1498. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  1499. <ul class="tsd-parameters">
  1500. <li class="tsd-parameter-signature">
  1501. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1502. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  1503. <li class="tsd-description">
  1504. <div class="tsd-parameters">
  1505. <h4 class="tsd-parameters-title">Parameters</h4>
  1506. <ul class="tsd-parameter-list">
  1507. <li>
  1508. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1509. <li>
  1510. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1511. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  1512. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  1513. <p>Inherited from Seq.min</p>
  1514. <ul>
  1515. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4801</li></ul></aside></li></ul></section>
  1516. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="minBy" class="tsd-anchor"></a>
  1517. <h3 class="tsd-anchor-link"><span>min<wbr/>By</span><a href="#minBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1518. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1519. <li class="tsd-signature tsd-anchor-link" id="minBy.minBy-1">min<wbr/>By<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>comparatorValueMapper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span>, comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#minBy.minBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1520. <li class="tsd-description">
  1521. <div class="tsd-comment tsd-typography"><p>Like <code>min</code>, but also accepts a <code>comparatorValueMapper</code> which allows for
  1522. comparing by more sophisticated means:</p>
  1523. <!-- runkit:activate -->
  1524. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1">, } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">l</span><span class="hl-1"> = </span><span class="hl-6">List</span><span class="hl-1">([</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Bob&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1"> },</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Max&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">3</span><span class="hl-1"> },</span><br/><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&#39;Lili&#39;</span><span class="hl-1">, </span><span class="hl-0">avgHit:</span><span class="hl-1"> </span><span class="hl-8">2</span><span class="hl-1"> } ,</span><br/><span class="hl-1">]);</span><br/><span class="hl-0">l</span><span class="hl-1">.</span><span class="hl-6">minBy</span><span class="hl-1">(</span><span class="hl-0">i</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">i</span><span class="hl-1">.</span><span class="hl-0">avgHit</span><span class="hl-1">); </span><span class="hl-9">// will output { name: &#39;Bob&#39;, avgHit: 1 }</span>
  1525. </code></pre>
  1526. </div>
  1527. <div class="tsd-type-parameters">
  1528. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1529. <ul class="tsd-type-parameters">
  1530. <li>
  1531. <h4>C</h4></li></ul></div>
  1532. <div class="tsd-parameters">
  1533. <h4 class="tsd-parameters-title">Parameters</h4>
  1534. <ul class="tsd-parameter-list">
  1535. <li>
  1536. <h5>comparatorValueMapper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span></h5>
  1537. <ul class="tsd-parameters">
  1538. <li class="tsd-parameter-signature">
  1539. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1540. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></li>
  1541. <li class="tsd-description">
  1542. <div class="tsd-parameters">
  1543. <h4 class="tsd-parameters-title">Parameters</h4>
  1544. <ul class="tsd-parameter-list">
  1545. <li>
  1546. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1547. <li>
  1548. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1549. <li>
  1550. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1551. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h4></li></ul></li></ul></li>
  1552. <li>
  1553. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  1554. <ul class="tsd-parameters">
  1555. <li class="tsd-parameter-signature">
  1556. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1557. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  1558. <li class="tsd-description">
  1559. <div class="tsd-parameters">
  1560. <h4 class="tsd-parameters-title">Parameters</h4>
  1561. <ul class="tsd-parameter-list">
  1562. <li>
  1563. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li>
  1564. <li>
  1565. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li></ul></div>
  1566. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  1567. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  1568. <p>Inherited from Seq.minBy</p>
  1569. <ul>
  1570. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4818</li></ul></aside></li></ul></section>
  1571. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="reduce" class="tsd-anchor"></a>
  1572. <h3 class="tsd-anchor-link"><span>reduce</span><a href="#reduce" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1573. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1574. <li class="tsd-signature tsd-anchor-link" id="reduce.reduce-1">reduce<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>reducer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span>, initialReduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><a href="#reduce.reduce-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1575. <li class="tsd-description">
  1576. <div class="tsd-comment tsd-typography"><p>Reduces the Collection to a value by calling the <code>reducer</code> for every entry
  1577. in the Collection and passing along the reduced value.</p>
  1578. <p>If <code>initialReduction</code> is not provided, the first item in the
  1579. Collection will be used.</p>
  1580. <h3>See</h3><p><code>Array#reduce</code>.</p>
  1581. </div>
  1582. <div class="tsd-type-parameters">
  1583. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1584. <ul class="tsd-type-parameters">
  1585. <li>
  1586. <h4>R</h4></li></ul></div>
  1587. <div class="tsd-parameters">
  1588. <h4 class="tsd-parameters-title">Parameters</h4>
  1589. <ul class="tsd-parameter-list">
  1590. <li>
  1591. <h5>reducer: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></h5>
  1592. <ul class="tsd-parameters">
  1593. <li class="tsd-parameter-signature">
  1594. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1595. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></li>
  1596. <li class="tsd-description">
  1597. <div class="tsd-parameters">
  1598. <h4 class="tsd-parameters-title">Parameters</h4>
  1599. <ul class="tsd-parameter-list">
  1600. <li>
  1601. <h5>reduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1602. <li>
  1603. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1604. <li>
  1605. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1606. <li>
  1607. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1608. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></li>
  1609. <li>
  1610. <h5>initialReduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1611. <li>
  1612. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1613. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4><aside class="tsd-sources">
  1614. <p>Inherited from Seq.reduce</p>
  1615. <ul>
  1616. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4597</li></ul></aside></li>
  1617. <li class="tsd-signature tsd-anchor-link" id="reduce.reduce-2">reduce<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>reducer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><a href="#reduce.reduce-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1618. <li class="tsd-description">
  1619. <div class="tsd-type-parameters">
  1620. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1621. <ul class="tsd-type-parameters">
  1622. <li>
  1623. <h4>R</h4></li></ul></div>
  1624. <div class="tsd-parameters">
  1625. <h4 class="tsd-parameters-title">Parameters</h4>
  1626. <ul class="tsd-parameter-list">
  1627. <li>
  1628. <h5>reducer: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></h5>
  1629. <ul class="tsd-parameters">
  1630. <li class="tsd-parameter-signature">
  1631. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1632. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></li>
  1633. <li class="tsd-description">
  1634. <div class="tsd-parameters">
  1635. <h4 class="tsd-parameters-title">Parameters</h4>
  1636. <ul class="tsd-parameter-list">
  1637. <li>
  1638. <h5>reduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1639. <li>
  1640. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1641. <li>
  1642. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1643. <li>
  1644. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1645. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></li></ul></div>
  1646. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4><aside class="tsd-sources">
  1647. <p>Inherited from Seq.reduce</p>
  1648. <ul>
  1649. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4602</li></ul></aside></li></ul></section>
  1650. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="reduceRight" class="tsd-anchor"></a>
  1651. <h3 class="tsd-anchor-link"><span>reduce<wbr/>Right</span><a href="#reduceRight" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1652. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1653. <li class="tsd-signature tsd-anchor-link" id="reduceRight.reduceRight-1">reduce<wbr/>Right<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>reducer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span>, initialReduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><a href="#reduceRight.reduceRight-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1654. <li class="tsd-description">
  1655. <div class="tsd-comment tsd-typography"><p>Reduces the Collection in reverse (from the right side).</p>
  1656. <p>Note: Similar to this.reverse().reduce(), and provided for parity
  1657. with <code>Array#reduceRight</code>.</p>
  1658. </div>
  1659. <div class="tsd-type-parameters">
  1660. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1661. <ul class="tsd-type-parameters">
  1662. <li>
  1663. <h4>R</h4></li></ul></div>
  1664. <div class="tsd-parameters">
  1665. <h4 class="tsd-parameters-title">Parameters</h4>
  1666. <ul class="tsd-parameter-list">
  1667. <li>
  1668. <h5>reducer: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></h5>
  1669. <ul class="tsd-parameters">
  1670. <li class="tsd-parameter-signature">
  1671. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1672. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></li>
  1673. <li class="tsd-description">
  1674. <div class="tsd-parameters">
  1675. <h4 class="tsd-parameters-title">Parameters</h4>
  1676. <ul class="tsd-parameter-list">
  1677. <li>
  1678. <h5>reduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1679. <li>
  1680. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1681. <li>
  1682. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1683. <li>
  1684. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1685. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></li>
  1686. <li>
  1687. <h5>initialReduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1688. <li>
  1689. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1690. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4><aside class="tsd-sources">
  1691. <p>Inherited from Seq.reduceRight</p>
  1692. <ul>
  1693. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4612</li></ul></aside></li>
  1694. <li class="tsd-signature tsd-anchor-link" id="reduceRight.reduceRight-2">reduce<wbr/>Right<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>reducer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><a href="#reduceRight.reduceRight-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1695. <li class="tsd-description">
  1696. <div class="tsd-type-parameters">
  1697. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1698. <ul class="tsd-type-parameters">
  1699. <li>
  1700. <h4>R</h4></li></ul></div>
  1701. <div class="tsd-parameters">
  1702. <h4 class="tsd-parameters-title">Parameters</h4>
  1703. <ul class="tsd-parameter-list">
  1704. <li>
  1705. <h5>reducer: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></h5>
  1706. <ul class="tsd-parameters">
  1707. <li class="tsd-parameter-signature">
  1708. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1709. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>reduction<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></li>
  1710. <li class="tsd-description">
  1711. <div class="tsd-parameters">
  1712. <h4 class="tsd-parameters-title">Parameters</h4>
  1713. <ul class="tsd-parameter-list">
  1714. <li>
  1715. <h5>reduction: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h5></li>
  1716. <li>
  1717. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1718. <li>
  1719. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1720. <li>
  1721. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1722. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></li></ul></div>
  1723. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4><aside class="tsd-sources">
  1724. <p>Inherited from Seq.reduceRight</p>
  1725. <ul>
  1726. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4617</li></ul></aside></li></ul></section>
  1727. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="rest" class="tsd-anchor"></a>
  1728. <h3 class="tsd-anchor-link"><span>rest</span><a href="#rest" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1729. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1730. <li class="tsd-signature tsd-anchor-link" id="rest.rest-1">rest<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#rest.rest-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1731. <li class="tsd-description">
  1732. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type containing all entries except
  1733. the first.</p>
  1734. </div>
  1735. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1736. <p>Inherited from Seq.rest</p>
  1737. <ul>
  1738. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4435</li></ul></aside></li></ul></section>
  1739. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="reverse" class="tsd-anchor"></a>
  1740. <h3 class="tsd-anchor-link"><span>reverse</span><a href="#reverse" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1741. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1742. <li class="tsd-signature tsd-anchor-link" id="reverse.reverse-1">reverse<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#reverse.reverse-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1743. <li class="tsd-description">
  1744. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type in reverse order.</p>
  1745. </div>
  1746. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1747. <p>Inherited from Seq.reverse</p>
  1748. <ul>
  1749. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4305</li></ul></aside></li></ul></section>
  1750. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="skip" class="tsd-anchor"></a>
  1751. <h3 class="tsd-anchor-link"><span>skip</span><a href="#skip" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1752. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1753. <li class="tsd-signature tsd-anchor-link" id="skip.skip-1">skip<span class="tsd-signature-symbol">(</span>amount<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#skip.skip-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1754. <li class="tsd-description">
  1755. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which excludes the first <code>amount</code>
  1756. entries from this Collection.</p>
  1757. </div>
  1758. <div class="tsd-parameters">
  1759. <h4 class="tsd-parameters-title">Parameters</h4>
  1760. <ul class="tsd-parameter-list">
  1761. <li>
  1762. <h5>amount: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  1763. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1764. <p>Inherited from Seq.skip</p>
  1765. <ul>
  1766. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4447</li></ul></aside></li></ul></section>
  1767. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="skipLast" class="tsd-anchor"></a>
  1768. <h3 class="tsd-anchor-link"><span>skip<wbr/>Last</span><a href="#skipLast" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1769. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1770. <li class="tsd-signature tsd-anchor-link" id="skipLast.skipLast-1">skip<wbr/>Last<span class="tsd-signature-symbol">(</span>amount<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#skipLast.skipLast-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1771. <li class="tsd-description">
  1772. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which excludes the last <code>amount</code>
  1773. entries from this Collection.</p>
  1774. </div>
  1775. <div class="tsd-parameters">
  1776. <h4 class="tsd-parameters-title">Parameters</h4>
  1777. <ul class="tsd-parameter-list">
  1778. <li>
  1779. <h5>amount: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  1780. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1781. <p>Inherited from Seq.skipLast</p>
  1782. <ul>
  1783. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4453</li></ul></aside></li></ul></section>
  1784. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="skipUntil" class="tsd-anchor"></a>
  1785. <h3 class="tsd-anchor-link"><span>skip<wbr/>Until</span><a href="#skipUntil" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1786. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1787. <li class="tsd-signature tsd-anchor-link" id="skipUntil.skipUntil-1">skip<wbr/>Until<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#skipUntil.skipUntil-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1788. <li class="tsd-description">
  1789. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes entries starting
  1790. from when <code>predicate</code> first returns true.</p>
  1791. <!-- runkit:activate -->
  1792. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;dog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;frog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;cat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;hat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;god&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-1"> .</span><span class="hl-6">skipUntil</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1">.</span><span class="hl-6">match</span><span class="hl-1">(</span><span class="hl-10">/hat/</span><span class="hl-1">))</span><br/><span class="hl-9">// List [ &quot;hat&quot;, &quot;god&quot; ]</span>
  1793. </code></pre>
  1794. </div>
  1795. <div class="tsd-parameters">
  1796. <h4 class="tsd-parameters-title">Parameters</h4>
  1797. <ul class="tsd-parameter-list">
  1798. <li>
  1799. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  1800. <ul class="tsd-parameters">
  1801. <li class="tsd-parameter-signature">
  1802. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1803. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  1804. <li class="tsd-description">
  1805. <div class="tsd-parameters">
  1806. <h4 class="tsd-parameters-title">Parameters</h4>
  1807. <ul class="tsd-parameter-list">
  1808. <li>
  1809. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1810. <li>
  1811. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1812. <li>
  1813. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1814. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  1815. <li>
  1816. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1817. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1818. <p>Inherited from Seq.skipUntil</p>
  1819. <ul>
  1820. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4484</li></ul></aside></li></ul></section>
  1821. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="skipWhile" class="tsd-anchor"></a>
  1822. <h3 class="tsd-anchor-link"><span>skip<wbr/>While</span><a href="#skipWhile" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1823. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1824. <li class="tsd-signature tsd-anchor-link" id="skipWhile.skipWhile-1">skip<wbr/>While<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#skipWhile.skipWhile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1825. <li class="tsd-description">
  1826. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes entries starting
  1827. from when <code>predicate</code> first returns false.</p>
  1828. <!-- runkit:activate -->
  1829. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;dog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;frog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;cat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;hat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;god&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-1"> .</span><span class="hl-6">skipWhile</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1">.</span><span class="hl-6">match</span><span class="hl-1">(</span><span class="hl-10">/g/</span><span class="hl-1">))</span><br/><span class="hl-9">// List [ &quot;cat&quot;, &quot;hat&quot;, &quot;god&quot; ]</span>
  1830. </code></pre>
  1831. </div>
  1832. <div class="tsd-parameters">
  1833. <h4 class="tsd-parameters-title">Parameters</h4>
  1834. <ul class="tsd-parameter-list">
  1835. <li>
  1836. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  1837. <ul class="tsd-parameters">
  1838. <li class="tsd-parameter-signature">
  1839. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1840. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  1841. <li class="tsd-description">
  1842. <div class="tsd-parameters">
  1843. <h4 class="tsd-parameters-title">Parameters</h4>
  1844. <ul class="tsd-parameter-list">
  1845. <li>
  1846. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1847. <li>
  1848. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1849. <li>
  1850. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1851. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  1852. <li>
  1853. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1854. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1855. <p>Inherited from Seq.skipWhile</p>
  1856. <ul>
  1857. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4467</li></ul></aside></li></ul></section>
  1858. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="slice" class="tsd-anchor"></a>
  1859. <h3 class="tsd-anchor-link"><span>slice</span><a href="#slice" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1860. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1861. <li class="tsd-signature tsd-anchor-link" id="slice.slice-1">slice<span class="tsd-signature-symbol">(</span>begin<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span>, end<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#slice.slice-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1862. <li class="tsd-description">
  1863. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type representing a portion of this
  1864. Collection from start up to but not including end.</p>
  1865. <p>If begin is negative, it is offset from the end of the Collection. e.g.
  1866. <code>slice(-2)</code> returns a Collection of the last two entries. If it is not
  1867. provided the new Collection will begin at the beginning of this Collection.</p>
  1868. <p>If end is negative, it is offset from the end of the Collection. e.g.
  1869. <code>slice(0, -1)</code> returns a Collection of everything but the last entry. If
  1870. it is not provided, the new Collection will continue through the end of
  1871. this Collection.</p>
  1872. <p>If the requested slice is equivalent to the current Collection, then it
  1873. will return itself.</p>
  1874. </div>
  1875. <div class="tsd-parameters">
  1876. <h4 class="tsd-parameters-title">Parameters</h4>
  1877. <ul class="tsd-parameter-list">
  1878. <li>
  1879. <h5><code class="tsd-tag ts-flagOptional">Optional</code> begin: <span class="tsd-signature-type">number</span></h5></li>
  1880. <li>
  1881. <h5><code class="tsd-tag ts-flagOptional">Optional</code> end: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  1882. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1883. <p>Inherited from Seq.slice</p>
  1884. <ul>
  1885. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4429</li></ul></aside></li></ul></section>
  1886. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="some" class="tsd-anchor"></a>
  1887. <h3 class="tsd-anchor-link"><span>some</span><a href="#some" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1888. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1889. <li class="tsd-signature tsd-anchor-link" id="some.some-1">some<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#some.some-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1890. <li class="tsd-description">
  1891. <div class="tsd-comment tsd-typography"><p>True if <code>predicate</code> returns true for any entry in the Collection.</p>
  1892. </div>
  1893. <div class="tsd-parameters">
  1894. <h4 class="tsd-parameters-title">Parameters</h4>
  1895. <ul class="tsd-parameter-list">
  1896. <li>
  1897. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  1898. <ul class="tsd-parameters">
  1899. <li class="tsd-parameter-signature">
  1900. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1901. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  1902. <li class="tsd-description">
  1903. <div class="tsd-parameters">
  1904. <h4 class="tsd-parameters-title">Parameters</h4>
  1905. <ul class="tsd-parameter-list">
  1906. <li>
  1907. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1908. <li>
  1909. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  1910. <li>
  1911. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  1912. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  1913. <li>
  1914. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  1915. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  1916. <p>Inherited from Seq.some</p>
  1917. <ul>
  1918. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4632</li></ul></aside></li></ul></section>
  1919. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="sort" class="tsd-anchor"></a>
  1920. <h3 class="tsd-anchor-link"><span>sort</span><a href="#sort" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1921. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1922. <li class="tsd-signature tsd-anchor-link" id="sort.sort-1">sort<span class="tsd-signature-symbol">(</span>comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#sort.sort-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1923. <li class="tsd-description">
  1924. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes the same entries,
  1925. stably sorted by using a <code>comparator</code>.</p>
  1926. <p>If a <code>comparator</code> is not provided, a default comparator uses <code>&lt;</code> and <code>&gt;</code>.</p>
  1927. <p><code>comparator(valueA, valueB)</code>:</p>
  1928. <ul>
  1929. <li>Returns <code>0</code> if the elements should not be swapped.</li>
  1930. <li>Returns <code>-1</code> (or any negative number) if <code>valueA</code> comes before <code>valueB</code></li>
  1931. <li>Returns <code>1</code> (or any positive number) if <code>valueA</code> comes after <code>valueB</code></li>
  1932. <li>Is pure, i.e. it must always return the same value for the same pair
  1933. of values.</li>
  1934. </ul>
  1935. <p>When sorting collections which have no defined order, their ordered
  1936. equivalents will be returned. e.g. <code>map.sort()</code> returns OrderedMap.</p>
  1937. <!-- runkit:activate -->
  1938. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-4">&quot;c&quot;</span><span class="hl-0">:</span><span class="hl-1"> </span><span class="hl-8">3</span><span class="hl-1">, </span><span class="hl-4">&quot;a&quot;</span><span class="hl-0">:</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-4">&quot;b&quot;</span><span class="hl-0">:</span><span class="hl-1"> </span><span class="hl-8">2</span><span class="hl-1"> }).</span><span class="hl-6">sort</span><span class="hl-1">((</span><span class="hl-0">a</span><span class="hl-1">, </span><span class="hl-0">b</span><span class="hl-1">) </span><span class="hl-2">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-7">if</span><span class="hl-1"> (</span><span class="hl-0">a</span><span class="hl-1"> &lt; </span><span class="hl-0">b</span><span class="hl-1">) { </span><span class="hl-7">return</span><span class="hl-1"> -</span><span class="hl-8">1</span><span class="hl-1">; }</span><br/><span class="hl-1"> </span><span class="hl-7">if</span><span class="hl-1"> (</span><span class="hl-0">a</span><span class="hl-1"> &gt; </span><span class="hl-0">b</span><span class="hl-1">) { </span><span class="hl-7">return</span><span class="hl-1"> </span><span class="hl-8">1</span><span class="hl-1">; }</span><br/><span class="hl-1"> </span><span class="hl-7">if</span><span class="hl-1"> (</span><span class="hl-0">a</span><span class="hl-1"> === </span><span class="hl-0">b</span><span class="hl-1">) { </span><span class="hl-7">return</span><span class="hl-1"> </span><span class="hl-8">0</span><span class="hl-1">; }</span><br/><span class="hl-1">});</span><br/><span class="hl-9">// OrderedMap { &quot;a&quot;: 1, &quot;b&quot;: 2, &quot;c&quot;: 3 }</span>
  1939. </code></pre>
  1940. <p>Note: <code>sort()</code> Always returns a new instance, even if the original was
  1941. already sorted.</p>
  1942. <p>Note: This is always an eager operation.</p>
  1943. </div>
  1944. <div class="tsd-parameters">
  1945. <h4 class="tsd-parameters-title">Parameters</h4>
  1946. <ul class="tsd-parameter-list">
  1947. <li>
  1948. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  1949. <ul class="tsd-parameters">
  1950. <li class="tsd-parameter-signature">
  1951. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1952. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  1953. <li class="tsd-description">
  1954. <div class="tsd-parameters">
  1955. <h4 class="tsd-parameters-title">Parameters</h4>
  1956. <ul class="tsd-parameter-list">
  1957. <li>
  1958. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  1959. <li>
  1960. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1961. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  1962. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  1963. <p>Inherited from Seq.sort</p>
  1964. <ul>
  1965. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4340</li></ul></aside></li></ul></section>
  1966. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="sortBy" class="tsd-anchor"></a>
  1967. <h3 class="tsd-anchor-link"><span>sort<wbr/>By</span><a href="#sortBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1968. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1969. <li class="tsd-signature tsd-anchor-link" id="sortBy.sortBy-1">sort<wbr/>By<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>comparatorValueMapper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span>, comparator<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#sortBy.sortBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1970. <li class="tsd-description">
  1971. <div class="tsd-comment tsd-typography"><p>Like <code>sort</code>, but also accepts a <code>comparatorValueMapper</code> which allows for
  1972. sorting by more sophisticated means:</p>
  1973. <!-- runkit:activate -->
  1974. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">beattles</span><span class="hl-1"> = </span><span class="hl-3">Map</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-0">John:</span><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&quot;Lennon&quot;</span><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">Paul:</span><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&quot;McCartney&quot;</span><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">George:</span><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&quot;Harrison&quot;</span><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">Ringo:</span><span class="hl-1"> { </span><span class="hl-0">name:</span><span class="hl-1"> </span><span class="hl-4">&quot;Starr&quot;</span><span class="hl-1"> },</span><br/><span class="hl-1">});</span><br/><span class="hl-0">beattles</span><span class="hl-1">.</span><span class="hl-6">sortBy</span><span class="hl-1">(</span><span class="hl-0">member</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">member</span><span class="hl-1">.</span><span class="hl-0">name</span><span class="hl-1">);</span>
  1975. </code></pre>
  1976. <p>Note: <code>sortBy()</code> Always returns a new instance, even if the original was
  1977. already sorted.</p>
  1978. <p>Note: This is always an eager operation.</p>
  1979. </div>
  1980. <div class="tsd-type-parameters">
  1981. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1982. <ul class="tsd-type-parameters">
  1983. <li>
  1984. <h4>C</h4></li></ul></div>
  1985. <div class="tsd-parameters">
  1986. <h4 class="tsd-parameters-title">Parameters</h4>
  1987. <ul class="tsd-parameter-list">
  1988. <li>
  1989. <h5>comparatorValueMapper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span></h5>
  1990. <ul class="tsd-parameters">
  1991. <li class="tsd-parameter-signature">
  1992. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1993. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></li>
  1994. <li class="tsd-description">
  1995. <div class="tsd-parameters">
  1996. <h4 class="tsd-parameters-title">Parameters</h4>
  1997. <ul class="tsd-parameter-list">
  1998. <li>
  1999. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2000. <li>
  2001. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  2002. <li>
  2003. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2004. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h4></li></ul></li></ul></li>
  2005. <li>
  2006. <h5><code class="tsd-tag ts-flagOptional">Optional</code> comparator: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></h5>
  2007. <ul class="tsd-parameters">
  2008. <li class="tsd-parameter-signature">
  2009. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2010. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>valueA<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span>, valueB<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
  2011. <li class="tsd-description">
  2012. <div class="tsd-parameters">
  2013. <h4 class="tsd-parameters-title">Parameters</h4>
  2014. <ul class="tsd-parameter-list">
  2015. <li>
  2016. <h5>valueA: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li>
  2017. <li>
  2018. <h5>valueB: <span class="tsd-signature-type" data-tsd-kind="Type parameter">C</span></h5></li></ul></div>
  2019. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
  2020. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2021. <p>Inherited from Seq.sortBy</p>
  2022. <ul>
  2023. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4363</li></ul></aside></li></ul></section>
  2024. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="splice" class="tsd-anchor"></a>
  2025. <h3 class="tsd-anchor-link"><span>splice</span><a href="#splice" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2026. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2027. <li class="tsd-signature tsd-anchor-link" id="splice.splice-1">splice<span class="tsd-signature-symbol">(</span>index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, removeNum<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, <span class="tsd-signature-symbol">...</span>values<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#splice.splice-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2028. <li class="tsd-description">
  2029. <div class="tsd-comment tsd-typography"><p>Splice returns a new indexed Collection by replacing a region of this
  2030. Collection with new values. If values are not provided, it only skips the
  2031. region to be removed.</p>
  2032. <p><code>index</code> may be a negative number, which indexes back from the end of the
  2033. Collection. <code>s.splice(-2)</code> splices after the second to last item.</p>
  2034. <!-- runkit:activate -->
  2035. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;a&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;b&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;c&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;d&#39;</span><span class="hl-1"> ]).</span><span class="hl-6">splice</span><span class="hl-1">(</span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-4">&#39;q&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;r&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;s&#39;</span><span class="hl-1">)</span><br/><span class="hl-9">// List [ &quot;a&quot;, &quot;q&quot;, &quot;r&quot;, &quot;s&quot;, &quot;d&quot; ]</span>
  2036. </code></pre>
  2037. <p>Since <code>splice()</code> re-indexes values, it produces a complete copy, which
  2038. has <code>O(N)</code> complexity.</p>
  2039. <p>Note: <code>splice</code> <em>cannot</em> be used in <code>withMutations</code>.</p>
  2040. </div>
  2041. <div class="tsd-parameters">
  2042. <h4 class="tsd-parameters-title">Parameters</h4>
  2043. <ul class="tsd-parameter-list">
  2044. <li>
  2045. <h5>index: <span class="tsd-signature-type">number</span></h5></li>
  2046. <li>
  2047. <h5>removeNum: <span class="tsd-signature-type">number</span></h5></li>
  2048. <li>
  2049. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2050. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2051. <p>Inherited from Collection.Indexed.splice</p>
  2052. <ul>
  2053. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3609</li></ul></aside></li></ul></section>
  2054. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="take" class="tsd-anchor"></a>
  2055. <h3 class="tsd-anchor-link"><span>take</span><a href="#take" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2056. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2057. <li class="tsd-signature tsd-anchor-link" id="take.take-1">take<span class="tsd-signature-symbol">(</span>amount<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#take.take-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2058. <li class="tsd-description">
  2059. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes the first <code>amount</code>
  2060. entries from this Collection.</p>
  2061. </div>
  2062. <div class="tsd-parameters">
  2063. <h4 class="tsd-parameters-title">Parameters</h4>
  2064. <ul class="tsd-parameter-list">
  2065. <li>
  2066. <h5>amount: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  2067. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2068. <p>Inherited from Seq.take</p>
  2069. <ul>
  2070. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4493</li></ul></aside></li></ul></section>
  2071. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="takeLast" class="tsd-anchor"></a>
  2072. <h3 class="tsd-anchor-link"><span>take<wbr/>Last</span><a href="#takeLast" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2073. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2074. <li class="tsd-signature tsd-anchor-link" id="takeLast.takeLast-1">take<wbr/>Last<span class="tsd-signature-symbol">(</span>amount<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#takeLast.takeLast-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2075. <li class="tsd-description">
  2076. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes the last <code>amount</code>
  2077. entries from this Collection.</p>
  2078. </div>
  2079. <div class="tsd-parameters">
  2080. <h4 class="tsd-parameters-title">Parameters</h4>
  2081. <ul class="tsd-parameter-list">
  2082. <li>
  2083. <h5>amount: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  2084. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2085. <p>Inherited from Seq.takeLast</p>
  2086. <ul>
  2087. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4499</li></ul></aside></li></ul></section>
  2088. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="takeUntil" class="tsd-anchor"></a>
  2089. <h3 class="tsd-anchor-link"><span>take<wbr/>Until</span><a href="#takeUntil" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2090. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2091. <li class="tsd-signature tsd-anchor-link" id="takeUntil.takeUntil-1">take<wbr/>Until<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#takeUntil.takeUntil-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2092. <li class="tsd-description">
  2093. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes entries from this
  2094. Collection as long as the <code>predicate</code> returns false.</p>
  2095. <!-- runkit:activate -->
  2096. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;dog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;frog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;cat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;hat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;god&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-1"> .</span><span class="hl-6">takeUntil</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1">.</span><span class="hl-6">match</span><span class="hl-1">(</span><span class="hl-10">/at/</span><span class="hl-1">))</span><br/><span class="hl-9">// List [ &quot;dog&quot;, &quot;frog&quot; ]</span>
  2097. </code></pre>
  2098. </div>
  2099. <div class="tsd-parameters">
  2100. <h4 class="tsd-parameters-title">Parameters</h4>
  2101. <ul class="tsd-parameter-list">
  2102. <li>
  2103. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  2104. <ul class="tsd-parameters">
  2105. <li class="tsd-parameter-signature">
  2106. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2107. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  2108. <li class="tsd-description">
  2109. <div class="tsd-parameters">
  2110. <h4 class="tsd-parameters-title">Parameters</h4>
  2111. <ul class="tsd-parameter-list">
  2112. <li>
  2113. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2114. <li>
  2115. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  2116. <li>
  2117. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2118. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  2119. <li>
  2120. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  2121. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2122. <p>Inherited from Seq.takeUntil</p>
  2123. <ul>
  2124. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4530</li></ul></aside></li></ul></section>
  2125. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="takeWhile" class="tsd-anchor"></a>
  2126. <h3 class="tsd-anchor-link"><span>take<wbr/>While</span><a href="#takeWhile" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2127. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2128. <li class="tsd-signature tsd-anchor-link" id="takeWhile.takeWhile-1">take<wbr/>While<span class="tsd-signature-symbol">(</span>predicate<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span>, context<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#takeWhile.takeWhile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2129. <li class="tsd-description">
  2130. <div class="tsd-comment tsd-typography"><p>Returns a new Collection of the same type which includes entries from this
  2131. Collection as long as the <code>predicate</code> returns true.</p>
  2132. <!-- runkit:activate -->
  2133. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-6">List</span><span class="hl-1">([ </span><span class="hl-4">&#39;dog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;frog&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;cat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;hat&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;god&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-1"> .</span><span class="hl-6">takeWhile</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1">.</span><span class="hl-6">match</span><span class="hl-1">(</span><span class="hl-10">/o/</span><span class="hl-1">))</span><br/><span class="hl-9">// List [ &quot;dog&quot;, &quot;frog&quot; ]</span>
  2134. </code></pre>
  2135. </div>
  2136. <div class="tsd-parameters">
  2137. <h4 class="tsd-parameters-title">Parameters</h4>
  2138. <ul class="tsd-parameter-list">
  2139. <li>
  2140. <h5>predicate: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></h5>
  2141. <ul class="tsd-parameters">
  2142. <li class="tsd-parameter-signature">
  2143. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2144. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, iter<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
  2145. <li class="tsd-description">
  2146. <div class="tsd-parameters">
  2147. <h4 class="tsd-parameters-title">Parameters</h4>
  2148. <ul class="tsd-parameter-list">
  2149. <li>
  2150. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2151. <li>
  2152. <h5>key: <span class="tsd-signature-type">number</span></h5></li>
  2153. <li>
  2154. <h5>iter: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2155. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></li>
  2156. <li>
  2157. <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
  2158. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2159. <p>Inherited from Seq.takeWhile</p>
  2160. <ul>
  2161. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4513</li></ul></aside></li></ul></section>
  2162. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="toArray" class="tsd-anchor"></a>
  2163. <h3 class="tsd-anchor-link"><span>to<wbr/>Array</span><a href="#toArray" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2164. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2165. <li class="tsd-signature tsd-anchor-link" id="toArray.toArray-1">to<wbr/>Array<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span><a href="#toArray.toArray-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2166. <li class="tsd-description">
  2167. <div class="tsd-comment tsd-typography"><p>Shallowly converts this collection to an Array.</p>
  2168. </div>
  2169. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
  2170. <p>Overrides Seq.toArray</p>
  2171. <ul>
  2172. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2903</li></ul></aside></li></ul></section>
  2173. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toIndexedSeq" class="tsd-anchor"></a>
  2174. <h3 class="tsd-anchor-link"><span>to<wbr/>Indexed<wbr/>Seq</span><a href="#toIndexedSeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2175. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2176. <li class="tsd-signature tsd-anchor-link" id="toIndexedSeq.toIndexedSeq-1">to<wbr/>Indexed<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toIndexedSeq.toIndexedSeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2177. <li class="tsd-description">
  2178. <div class="tsd-comment tsd-typography"><p>Returns an Seq.Indexed of the values of this Collection, discarding keys.</p>
  2179. </div>
  2180. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2181. <p>Inherited from Seq.toIndexedSeq</p>
  2182. <ul>
  2183. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4175</li></ul></aside></li></ul></section>
  2184. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="toJS" class="tsd-anchor"></a>
  2185. <h3 class="tsd-anchor-link"><span>toJS</span><a href="#toJS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2186. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2187. <li class="tsd-signature tsd-anchor-link" id="toJS.toJS-1">toJS<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span><a href="#toJS.toJS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2188. <li class="tsd-description">
  2189. <div class="tsd-comment tsd-typography"><p>Deeply converts this Indexed Seq to equivalent native JavaScript Array.</p>
  2190. </div>
  2191. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
  2192. <p>Overrides Seq.toJS</p>
  2193. <ul>
  2194. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2893</li></ul></aside></li></ul></section>
  2195. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="toJSON" class="tsd-anchor"></a>
  2196. <h3 class="tsd-anchor-link"><span>toJSON</span><a href="#toJSON" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2197. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2198. <li class="tsd-signature tsd-anchor-link" id="toJSON.toJSON-1">toJSON<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span><a href="#toJSON.toJSON-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2199. <li class="tsd-description">
  2200. <div class="tsd-comment tsd-typography"><p>Shallowly converts this Indexed Seq to equivalent native JavaScript Array.</p>
  2201. </div>
  2202. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
  2203. <p>Overrides Seq.toJSON</p>
  2204. <ul>
  2205. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2898</li></ul></aside></li></ul></section>
  2206. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toKeyedSeq" class="tsd-anchor"></a>
  2207. <h3 class="tsd-anchor-link"><span>to<wbr/>Keyed<wbr/>Seq</span><a href="#toKeyedSeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2208. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2209. <li class="tsd-signature tsd-anchor-link" id="toKeyedSeq.toKeyedSeq-1">to<wbr/>Keyed<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toKeyedSeq.toKeyedSeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2210. <li class="tsd-description">
  2211. <div class="tsd-comment tsd-typography"><p>Returns a Seq.Keyed from this Collection where indices are treated as keys.</p>
  2212. <p>This is useful if you want to operate on an
  2213. Collection.Indexed and preserve the [index, value] pairs.</p>
  2214. <p>The returned Seq will have identical iteration order as
  2215. this Collection.</p>
  2216. <!-- runkit:activate -->
  2217. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Seq</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">indexedSeq</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-4">&#39;A&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;B&#39;</span><span class="hl-1">, </span><span class="hl-4">&#39;C&#39;</span><span class="hl-1"> ])</span><br/><span class="hl-9">// Seq [ &quot;A&quot;, &quot;B&quot;, &quot;C&quot; ]</span><br/><span class="hl-0">indexedSeq</span><span class="hl-1">.</span><span class="hl-6">filter</span><span class="hl-1">(</span><span class="hl-0">v</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">v</span><span class="hl-1"> === </span><span class="hl-4">&#39;B&#39;</span><span class="hl-1">)</span><br/><span class="hl-9">// Seq [ &quot;B&quot; ]</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">keyedSeq</span><span class="hl-1"> = </span><span class="hl-0">indexedSeq</span><span class="hl-1">.</span><span class="hl-6">toKeyedSeq</span><span class="hl-1">()</span><br/><span class="hl-9">// Seq { 0: &quot;A&quot;, 1: &quot;B&quot;, 2: &quot;C&quot; }</span><br/><span class="hl-0">keyedSeq</span><span class="hl-1">.</span><span class="hl-6">filter</span><span class="hl-1">(</span><span class="hl-0">v</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">v</span><span class="hl-1"> === </span><span class="hl-4">&#39;B&#39;</span><span class="hl-1">)</span><br/><span class="hl-9">// Seq { 1: &quot;B&quot; }</span>
  2218. </code></pre>
  2219. </div>
  2220. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Keyed-2.html" class="tsd-signature-type" data-tsd-kind="Function">Keyed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2221. <p>Inherited from Seq.toKeyedSeq</p>
  2222. <ul>
  2223. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4170</li></ul></aside></li></ul></section>
  2224. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toList" class="tsd-anchor"></a>
  2225. <h3 class="tsd-anchor-link"><span>to<wbr/>List</span><a href="#toList" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2226. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2227. <li class="tsd-signature tsd-anchor-link" id="toList.toList-1">to<wbr/>List<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.List-3.html" class="tsd-signature-type" data-tsd-kind="Function">List</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toList.toList-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2228. <li class="tsd-description">
  2229. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a List, discarding keys.</p>
  2230. <p>This is similar to <code>List(collection)</code>, but provided to allow for chained
  2231. expressions. However, when called on <code>Map</code> or other keyed collections,
  2232. <code>collection.toList()</code> discards the keys and creates a list of only the
  2233. values, whereas <code>List(collection)</code> creates a list of entry tuples.</p>
  2234. <!-- runkit:activate -->
  2235. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Map</span><span class="hl-1">, </span><span class="hl-5">List</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><span class="hl-2">var</span><span class="hl-1"> </span><span class="hl-0">myMap</span><span class="hl-1"> = </span><span class="hl-3">Map</span><span class="hl-1">({ </span><span class="hl-0">a:</span><span class="hl-1"> </span><span class="hl-4">&#39;Apple&#39;</span><span class="hl-1">, </span><span class="hl-0">b:</span><span class="hl-1"> </span><span class="hl-4">&#39;Banana&#39;</span><span class="hl-1"> })</span><br/><span class="hl-6">List</span><span class="hl-1">(</span><span class="hl-0">myMap</span><span class="hl-1">) </span><span class="hl-9">// List [ [ &quot;a&quot;, &quot;Apple&quot; ], [ &quot;b&quot;, &quot;Banana&quot; ] ]</span><br/><span class="hl-0">myMap</span><span class="hl-1">.</span><span class="hl-6">toList</span><span class="hl-1">() </span><span class="hl-9">// List [ &quot;Apple&quot;, &quot;Banana&quot; ]</span>
  2236. </code></pre>
  2237. </div>
  2238. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.List-3.html" class="tsd-signature-type" data-tsd-kind="Function">List</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2239. <p>Inherited from Seq.toList</p>
  2240. <ul>
  2241. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4129</li></ul></aside></li></ul></section>
  2242. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toMap" class="tsd-anchor"></a>
  2243. <h3 class="tsd-anchor-link"><span>to<wbr/>Map</span><a href="#toMap" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2244. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2245. <li class="tsd-signature tsd-anchor-link" id="toMap.toMap-1">to<wbr/>Map<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Map-2.html" class="tsd-signature-type" data-tsd-kind="Function">Map</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toMap.toMap-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2246. <li class="tsd-description">
  2247. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a Map, Throws if keys are not hashable.</p>
  2248. <p>Note: This is equivalent to <code>Map(this.toKeyedSeq())</code>, but provided
  2249. for convenience and to allow for chained expressions.</p>
  2250. </div>
  2251. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Map-2.html" class="tsd-signature-type" data-tsd-kind="Function">Map</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2252. <p>Inherited from Seq.toMap</p>
  2253. <ul>
  2254. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4085</li></ul></aside></li></ul></section>
  2255. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toObject" class="tsd-anchor"></a>
  2256. <h3 class="tsd-anchor-link"><span>to<wbr/>Object</span><a href="#toObject" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2257. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2258. <li class="tsd-signature tsd-anchor-link" id="toObject.toObject-1">to<wbr/>Object<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span>[key: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol"> }</span><a href="#toObject.toObject-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2259. <li class="tsd-description">
  2260. <div class="tsd-comment tsd-typography"><p>Shallowly converts this Collection to an Object.</p>
  2261. <p>Converts keys to Strings.</p>
  2262. </div>
  2263. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span>[key: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol"> }</span></h4>
  2264. <ul class="tsd-parameters">
  2265. <li class="tsd-parameter-index-signature">
  2266. <h5><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span></h5></li></ul><aside class="tsd-sources">
  2267. <p>Inherited from Seq.toObject</p>
  2268. <ul>
  2269. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4075</li></ul></aside></li></ul></section>
  2270. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toOrderedMap" class="tsd-anchor"></a>
  2271. <h3 class="tsd-anchor-link"><span>to<wbr/>Ordered<wbr/>Map</span><a href="#toOrderedMap" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2272. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2273. <li class="tsd-signature tsd-anchor-link" id="toOrderedMap.toOrderedMap-1">to<wbr/>Ordered<wbr/>Map<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.OrderedMap-2.html" class="tsd-signature-type" data-tsd-kind="Function">OrderedMap</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toOrderedMap.toOrderedMap-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2274. <li class="tsd-description">
  2275. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a Map, maintaining the order of iteration.</p>
  2276. <p>Note: This is equivalent to <code>OrderedMap(this.toKeyedSeq())</code>, but
  2277. provided for convenience and to allow for chained expressions.</p>
  2278. </div>
  2279. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.OrderedMap-2.html" class="tsd-signature-type" data-tsd-kind="Function">OrderedMap</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2280. <p>Inherited from Seq.toOrderedMap</p>
  2281. <ul>
  2282. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4093</li></ul></aside></li></ul></section>
  2283. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toOrderedSet" class="tsd-anchor"></a>
  2284. <h3 class="tsd-anchor-link"><span>to<wbr/>Ordered<wbr/>Set</span><a href="#toOrderedSet" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2285. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2286. <li class="tsd-signature tsd-anchor-link" id="toOrderedSet.toOrderedSet-1">to<wbr/>Ordered<wbr/>Set<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.OrderedSet-4.html" class="tsd-signature-type" data-tsd-kind="Function">OrderedSet</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toOrderedSet.toOrderedSet-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2287. <li class="tsd-description">
  2288. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a Set, maintaining the order of iteration and
  2289. discarding keys.</p>
  2290. <p>Note: This is equivalent to <code>OrderedSet(this.valueSeq())</code>, but provided
  2291. for convenience and to allow for chained expressions.</p>
  2292. </div>
  2293. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.OrderedSet-4.html" class="tsd-signature-type" data-tsd-kind="Function">OrderedSet</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2294. <p>Inherited from Seq.toOrderedSet</p>
  2295. <ul>
  2296. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4111</li></ul></aside></li></ul></section>
  2297. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="toSeq" class="tsd-anchor"></a>
  2298. <h3 class="tsd-anchor-link"><span>to<wbr/>Seq</span><a href="#toSeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2299. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2300. <li class="tsd-signature tsd-anchor-link" id="toSeq.toSeq-1">to<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toSeq.toSeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2301. <li class="tsd-description">
  2302. <div class="tsd-comment tsd-typography"><p>Returns itself</p>
  2303. </div>
  2304. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2305. <p>Overrides Seq.toSeq</p>
  2306. <ul>
  2307. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2908</li></ul></aside></li></ul></section>
  2308. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toSet" class="tsd-anchor"></a>
  2309. <h3 class="tsd-anchor-link"><span>to<wbr/>Set</span><a href="#toSet" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2310. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2311. <li class="tsd-signature tsd-anchor-link" id="toSet.toSet-1">to<wbr/>Set<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Set-5.html" class="tsd-signature-type" data-tsd-kind="Function">Set</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toSet.toSet-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2312. <li class="tsd-description">
  2313. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a Set, discarding keys. Throws if values
  2314. are not hashable.</p>
  2315. <p>Note: This is equivalent to <code>Set(this)</code>, but provided to allow for
  2316. chained expressions.</p>
  2317. </div>
  2318. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Set-5.html" class="tsd-signature-type" data-tsd-kind="Function">Set</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2319. <p>Inherited from Seq.toSet</p>
  2320. <ul>
  2321. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4102</li></ul></aside></li></ul></section>
  2322. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toSetSeq" class="tsd-anchor"></a>
  2323. <h3 class="tsd-anchor-link"><span>to<wbr/>Set<wbr/>Seq</span><a href="#toSetSeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2324. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2325. <li class="tsd-signature tsd-anchor-link" id="toSetSeq.toSetSeq-1">to<wbr/>Set<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Set-6.html" class="tsd-signature-type" data-tsd-kind="Function">Set</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toSetSeq.toSetSeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2326. <li class="tsd-description">
  2327. <div class="tsd-comment tsd-typography"><p>Returns a Seq.Set of the values of this Collection, discarding keys.</p>
  2328. </div>
  2329. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Set-6.html" class="tsd-signature-type" data-tsd-kind="Function">Set</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2330. <p>Inherited from Seq.toSetSeq</p>
  2331. <ul>
  2332. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4180</li></ul></aside></li></ul></section>
  2333. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toStack" class="tsd-anchor"></a>
  2334. <h3 class="tsd-anchor-link"><span>to<wbr/>Stack</span><a href="#toStack" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2335. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2336. <li class="tsd-signature tsd-anchor-link" id="toStack.toStack-1">to<wbr/>Stack<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Stack-2.html" class="tsd-signature-type" data-tsd-kind="Function">Stack</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#toStack.toStack-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2337. <li class="tsd-description">
  2338. <div class="tsd-comment tsd-typography"><p>Converts this Collection to a Stack, discarding keys. Throws if values
  2339. are not hashable.</p>
  2340. <p>Note: This is equivalent to <code>Stack(this)</code>, but provided to allow for
  2341. chained expressions.</p>
  2342. </div>
  2343. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Stack-2.html" class="tsd-signature-type" data-tsd-kind="Function">Stack</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2344. <p>Inherited from Seq.toStack</p>
  2345. <ul>
  2346. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4138</li></ul></aside></li></ul></section>
  2347. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="update" class="tsd-anchor"></a>
  2348. <h3 class="tsd-anchor-link"><span>update</span><a href="#update" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2349. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2350. <li class="tsd-signature tsd-anchor-link" id="update.update-1">update<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>updater<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><a href="#update.update-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2351. <li class="tsd-description">
  2352. <div class="tsd-comment tsd-typography"><p>This can be very useful as a way to &quot;chain&quot; a normal function into a
  2353. sequence of methods. RxJS calls this &quot;let&quot; and lodash calls it &quot;thru&quot;.</p>
  2354. <p>For example, to sum a Seq after mapping and filtering:</p>
  2355. <!-- runkit:activate -->
  2356. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> { </span><span class="hl-5">Seq</span><span class="hl-1"> } = </span><span class="hl-6">require</span><span class="hl-1">(</span><span class="hl-4">&#39;immutable&#39;</span><span class="hl-1">)</span><br/><br/><span class="hl-2">function</span><span class="hl-1"> </span><span class="hl-6">sum</span><span class="hl-1">(</span><span class="hl-0">collection</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-7">return</span><span class="hl-1"> </span><span class="hl-0">collection</span><span class="hl-1">.</span><span class="hl-6">reduce</span><span class="hl-1">((</span><span class="hl-0">sum</span><span class="hl-1">, </span><span class="hl-0">x</span><span class="hl-1">) </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">sum</span><span class="hl-1"> + </span><span class="hl-0">x</span><span class="hl-1">, </span><span class="hl-8">0</span><span class="hl-1">)</span><br/><span class="hl-1">}</span><br/><br/><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ])</span><br/><span class="hl-1"> .</span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1"> + </span><span class="hl-8">1</span><span class="hl-1">)</span><br/><span class="hl-1"> .</span><span class="hl-6">filter</span><span class="hl-1">(</span><span class="hl-0">x</span><span class="hl-1"> </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">x</span><span class="hl-1"> % </span><span class="hl-8">2</span><span class="hl-1"> === </span><span class="hl-8">0</span><span class="hl-1">)</span><br/><span class="hl-1"> .</span><span class="hl-6">update</span><span class="hl-1">(</span><span class="hl-0">sum</span><span class="hl-1">)</span><br/><span class="hl-9">// 6</span>
  2357. </code></pre>
  2358. </div>
  2359. <div class="tsd-type-parameters">
  2360. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2361. <ul class="tsd-type-parameters">
  2362. <li>
  2363. <h4>R</h4></li></ul></div>
  2364. <div class="tsd-parameters">
  2365. <h4 class="tsd-parameters-title">Parameters</h4>
  2366. <ul class="tsd-parameter-list">
  2367. <li>
  2368. <h5>updater: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></h5>
  2369. <ul class="tsd-parameters">
  2370. <li class="tsd-parameter-signature">
  2371. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2372. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></li>
  2373. <li class="tsd-description">
  2374. <div class="tsd-parameters">
  2375. <h4 class="tsd-parameters-title">Parameters</h4>
  2376. <ul class="tsd-parameter-list">
  2377. <li>
  2378. <h5>value: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2379. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></li></ul></div>
  2380. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4><aside class="tsd-sources">
  2381. <p>Inherited from Seq.update</p>
  2382. <ul>
  2383. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4042</li></ul></aside></li></ul></section>
  2384. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="valueSeq" class="tsd-anchor"></a>
  2385. <h3 class="tsd-anchor-link"><span>value<wbr/>Seq</span><a href="#valueSeq" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2386. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2387. <li class="tsd-signature tsd-anchor-link" id="valueSeq.valueSeq-1">value<wbr/>Seq<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#valueSeq.valueSeq-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2388. <li class="tsd-description">
  2389. <div class="tsd-comment tsd-typography"><p>Returns an Seq.Indexed of the values of this Collection, discarding keys.</p>
  2390. </div>
  2391. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2392. <p>Inherited from Seq.valueSeq</p>
  2393. <ul>
  2394. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4224</li></ul></aside></li></ul></section>
  2395. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="values" class="tsd-anchor"></a>
  2396. <h3 class="tsd-anchor-link"><span>values</span><a href="#values" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2397. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2398. <li class="tsd-signature tsd-anchor-link" id="values.values-1">values<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><a href="#values.values-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2399. <li class="tsd-description">
  2400. <div class="tsd-comment tsd-typography"><p>An iterator of this <code>Collection</code>&#39;s values.</p>
  2401. <p>Note: this will return an ES6 iterator which does not support
  2402. Immutable.js sequence algorithms. Use <code>valueSeq</code> instead, if this is
  2403. what you want.</p>
  2404. </div>
  2405. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.IterableIterator.html" class="tsd-signature-type" data-tsd-kind="Interface">IterableIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2406. <p>Inherited from Seq.values</p>
  2407. <ul>
  2408. <li>Defined in node_modules/immutable/dist/immutable.d.ts:4200</li></ul></aside></li></ul></section>
  2409. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="zip" class="tsd-anchor"></a>
  2410. <h3 class="tsd-anchor-link"><span>zip</span><a href="#zip" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2411. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2412. <li class="tsd-signature tsd-anchor-link" id="zip.zip-1">zip<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#zip.zip-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2413. <li class="tsd-description">
  2414. <div class="tsd-comment tsd-typography"><p>Returns a Seq &quot;zipped&quot; with the provided collections.</p>
  2415. <p>Like <code>zipWith</code>, but using the default <code>zipper</code>: creating an <code>Array</code>.</p>
  2416. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">a</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">b</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">4</span><span class="hl-1">, </span><span class="hl-8">5</span><span class="hl-1">, </span><span class="hl-8">6</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">c</span><span class="hl-1"> = </span><span class="hl-0">a</span><span class="hl-1">.</span><span class="hl-6">zip</span><span class="hl-1">(</span><span class="hl-0">b</span><span class="hl-1">); </span><span class="hl-9">// Seq [ [ 1, 4 ], [ 2, 5 ], [ 3, 6 ] ]</span>
  2417. </code></pre>
  2418. </div>
  2419. <div class="tsd-type-parameters">
  2420. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2421. <ul class="tsd-type-parameters">
  2422. <li>
  2423. <h4>U</h4></li></ul></div>
  2424. <div class="tsd-parameters">
  2425. <h4 class="tsd-parameters-title">Parameters</h4>
  2426. <ul class="tsd-parameter-list">
  2427. <li>
  2428. <h5>other: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2429. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2430. <p>Overrides Collection.Indexed.zip</p>
  2431. <ul>
  2432. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2972</li></ul></aside></li>
  2433. <li class="tsd-signature tsd-anchor-link" id="zip.zip-2">zip<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span>, other2<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#zip.zip-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2434. <li class="tsd-description">
  2435. <div class="tsd-type-parameters">
  2436. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2437. <ul class="tsd-type-parameters">
  2438. <li>
  2439. <h4>U</h4></li>
  2440. <li>
  2441. <h4>V</h4></li></ul></div>
  2442. <div class="tsd-parameters">
  2443. <h4 class="tsd-parameters-title">Parameters</h4>
  2444. <ul class="tsd-parameter-list">
  2445. <li>
  2446. <h5>other: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li>
  2447. <li>
  2448. <h5>other2: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2449. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2450. <p>Overrides Collection.Indexed.zip</p>
  2451. <ul>
  2452. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2973</li></ul></aside></li>
  2453. <li class="tsd-signature tsd-anchor-link" id="zip.zip-3">zip<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>collections<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><a href="#zip.zip-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2454. <li class="tsd-description">
  2455. <div class="tsd-parameters">
  2456. <h4 class="tsd-parameters-title">Parameters</h4>
  2457. <ul class="tsd-parameter-list">
  2458. <li>
  2459. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>collections: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2460. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2461. <p>Overrides Collection.Indexed.zip</p>
  2462. <ul>
  2463. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2977</li></ul></aside></li></ul></section>
  2464. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="zipAll" class="tsd-anchor"></a>
  2465. <h3 class="tsd-anchor-link"><span>zip<wbr/>All</span><a href="#zipAll" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2466. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2467. <li class="tsd-signature tsd-anchor-link" id="zipAll.zipAll-1">zip<wbr/>All<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipAll.zipAll-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2468. <li class="tsd-description">
  2469. <div class="tsd-comment tsd-typography"><p>Returns a Seq &quot;zipped&quot; with the provided collections.</p>
  2470. <p>Unlike <code>zip</code>, <code>zipAll</code> continues zipping until the longest collection is
  2471. exhausted. Missing values from shorter collections are filled with <code>undefined</code>.</p>
  2472. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">a</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">b</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">3</span><span class="hl-1">, </span><span class="hl-8">4</span><span class="hl-1">, </span><span class="hl-8">5</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">c</span><span class="hl-1"> = </span><span class="hl-0">a</span><span class="hl-1">.</span><span class="hl-6">zipAll</span><span class="hl-1">(</span><span class="hl-0">b</span><span class="hl-1">); </span><span class="hl-9">// Seq [ [ 1, 3 ], [ 2, 4 ], [ undefined, 5 ] ]</span>
  2473. </code></pre>
  2474. </div>
  2475. <div class="tsd-type-parameters">
  2476. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2477. <ul class="tsd-type-parameters">
  2478. <li>
  2479. <h4>U</h4></li></ul></div>
  2480. <div class="tsd-parameters">
  2481. <h4 class="tsd-parameters-title">Parameters</h4>
  2482. <ul class="tsd-parameter-list">
  2483. <li>
  2484. <h5>other: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2485. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2486. <p>Overrides Collection.Indexed.zipAll</p>
  2487. <ul>
  2488. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2993</li></ul></aside></li>
  2489. <li class="tsd-signature tsd-anchor-link" id="zipAll.zipAll-2">zip<wbr/>All<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span>, other2<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipAll.zipAll-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2490. <li class="tsd-description">
  2491. <div class="tsd-type-parameters">
  2492. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2493. <ul class="tsd-type-parameters">
  2494. <li>
  2495. <h4>U</h4></li>
  2496. <li>
  2497. <h4>V</h4></li></ul></div>
  2498. <div class="tsd-parameters">
  2499. <h4 class="tsd-parameters-title">Parameters</h4>
  2500. <ul class="tsd-parameter-list">
  2501. <li>
  2502. <h5>other: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li>
  2503. <li>
  2504. <h5>other2: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2505. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2506. <p>Overrides Collection.Indexed.zipAll</p>
  2507. <ul>
  2508. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2994</li></ul></aside></li>
  2509. <li class="tsd-signature tsd-anchor-link" id="zipAll.zipAll-3">zip<wbr/>All<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>collections<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipAll.zipAll-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2510. <li class="tsd-description">
  2511. <div class="tsd-parameters">
  2512. <h4 class="tsd-parameters-title">Parameters</h4>
  2513. <ul class="tsd-parameter-list">
  2514. <li>
  2515. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>collections: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2516. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2517. <p>Overrides Collection.Indexed.zipAll</p>
  2518. <ul>
  2519. <li>Defined in node_modules/immutable/dist/immutable.d.ts:2998</li></ul></aside></li></ul></section>
  2520. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="zipWith" class="tsd-anchor"></a>
  2521. <h3 class="tsd-anchor-link"><span>zip<wbr/>With</span><a href="#zipWith" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2522. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2523. <li class="tsd-signature tsd-anchor-link" id="zipWith.zipWith-1">zip<wbr/>With<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>zipper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span>, otherCollection<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipWith.zipWith-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2524. <li class="tsd-description">
  2525. <div class="tsd-comment tsd-typography"><p>Returns a Seq &quot;zipped&quot; with the provided collections by using a
  2526. custom <code>zipper</code> function.</p>
  2527. <pre><code class="language-js"><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">a</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">1</span><span class="hl-1">, </span><span class="hl-8">2</span><span class="hl-1">, </span><span class="hl-8">3</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">b</span><span class="hl-1"> = </span><span class="hl-6">Seq</span><span class="hl-1">([ </span><span class="hl-8">4</span><span class="hl-1">, </span><span class="hl-8">5</span><span class="hl-1">, </span><span class="hl-8">6</span><span class="hl-1"> ]);</span><br/><span class="hl-2">const</span><span class="hl-1"> </span><span class="hl-5">c</span><span class="hl-1"> = </span><span class="hl-0">a</span><span class="hl-1">.</span><span class="hl-6">zipWith</span><span class="hl-1">((</span><span class="hl-0">a</span><span class="hl-1">, </span><span class="hl-0">b</span><span class="hl-1">) </span><span class="hl-2">=&gt;</span><span class="hl-1"> </span><span class="hl-0">a</span><span class="hl-1"> + </span><span class="hl-0">b</span><span class="hl-1">, </span><span class="hl-0">b</span><span class="hl-1">);</span><br/><span class="hl-9">// Seq [ 5, 7, 9 ]</span>
  2528. </code></pre>
  2529. </div>
  2530. <div class="tsd-type-parameters">
  2531. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2532. <ul class="tsd-type-parameters">
  2533. <li>
  2534. <h4>U</h4></li>
  2535. <li>
  2536. <h4>Z</h4></li></ul></div>
  2537. <div class="tsd-parameters">
  2538. <h4 class="tsd-parameters-title">Parameters</h4>
  2539. <ul class="tsd-parameter-list">
  2540. <li>
  2541. <h5>zipper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span></h5>
  2542. <ul class="tsd-parameters">
  2543. <li class="tsd-parameter-signature">
  2544. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2545. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></li>
  2546. <li class="tsd-description">
  2547. <div class="tsd-parameters">
  2548. <h4 class="tsd-parameters-title">Parameters</h4>
  2549. <ul class="tsd-parameter-list">
  2550. <li>
  2551. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2552. <li>
  2553. <h5>otherValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span></h5></li></ul></div>
  2554. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></h4></li></ul></li></ul></li>
  2555. <li>
  2556. <h5>otherCollection: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2557. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2558. <p>Overrides Collection.Indexed.zipWith</p>
  2559. <ul>
  2560. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3013</li></ul></aside></li>
  2561. <li class="tsd-signature tsd-anchor-link" id="zipWith.zipWith-2">zip<wbr/>With<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>zipper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span>, thirdValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span>, otherCollection<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span>, thirdCollection<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipWith.zipWith-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2562. <li class="tsd-description">
  2563. <div class="tsd-type-parameters">
  2564. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2565. <ul class="tsd-type-parameters">
  2566. <li>
  2567. <h4>U</h4></li>
  2568. <li>
  2569. <h4>V</h4></li>
  2570. <li>
  2571. <h4>Z</h4></li></ul></div>
  2572. <div class="tsd-parameters">
  2573. <h4 class="tsd-parameters-title">Parameters</h4>
  2574. <ul class="tsd-parameter-list">
  2575. <li>
  2576. <h5>zipper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span>, thirdValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span></h5>
  2577. <ul class="tsd-parameters">
  2578. <li class="tsd-parameter-signature">
  2579. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2580. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, otherValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span>, thirdValue<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></li>
  2581. <li class="tsd-description">
  2582. <div class="tsd-parameters">
  2583. <h4 class="tsd-parameters-title">Parameters</h4>
  2584. <ul class="tsd-parameter-list">
  2585. <li>
  2586. <h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2587. <li>
  2588. <h5>otherValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span></h5></li>
  2589. <li>
  2590. <h5>thirdValue: <span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span></h5></li></ul></div>
  2591. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></h4></li></ul></li></ul></li>
  2592. <li>
  2593. <h5>otherCollection: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">U</span><span class="tsd-signature-symbol">&gt;</span></h5></li>
  2594. <li>
  2595. <h5>thirdCollection: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">V</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
  2596. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2597. <p>Overrides Collection.Indexed.zipWith</p>
  2598. <ul>
  2599. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3017</li></ul></aside></li>
  2600. <li class="tsd-signature tsd-anchor-link" id="zipWith.zipWith-3">zip<wbr/>With<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>zipper<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>values<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span>, <span class="tsd-signature-symbol">...</span>collections<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span><a href="#zipWith.zipWith-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2601. <li class="tsd-description">
  2602. <div class="tsd-type-parameters">
  2603. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2604. <ul class="tsd-type-parameters">
  2605. <li>
  2606. <h4>Z</h4></li></ul></div>
  2607. <div class="tsd-parameters">
  2608. <h4 class="tsd-parameters-title">Parameters</h4>
  2609. <ul class="tsd-parameter-list">
  2610. <li>
  2611. <h5>zipper: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>values<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">)</span></h5>
  2612. <ul class="tsd-parameters">
  2613. <li class="tsd-parameter-signature">
  2614. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2615. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>values<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></li>
  2616. <li class="tsd-description">
  2617. <div class="tsd-parameters">
  2618. <h4 class="tsd-parameters-title">Parameters</h4>
  2619. <ul class="tsd-parameter-list">
  2620. <li>
  2621. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2622. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span></h4></li></ul></li></ul></li>
  2623. <li>
  2624. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>collections: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Collection-2.html" class="tsd-signature-type" data-tsd-kind="Function">Collection</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2625. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../functions/RcsbFv3DAssembly._internal_.Indexed-5.html" class="tsd-signature-type" data-tsd-kind="Function">Indexed</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">Z</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2626. <p>Overrides Collection.Indexed.zipWith</p>
  2627. <ul>
  2628. <li>Defined in node_modules/immutable/dist/immutable.d.ts:3022</li></ul></aside></li></ul></section></section></div>
  2629. <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
  2630. <div class="tsd-navigation settings">
  2631. <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
  2632. <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
  2633. <div class="tsd-accordion-details">
  2634. <div class="tsd-filter-visibility">
  2635. <h4 class="uppercase">Member Visibility</h4><form>
  2636. <ul id="tsd-filter-options">
  2637. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
  2638. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li>
  2639. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
  2640. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
  2641. <div class="tsd-theme-toggle">
  2642. <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
  2643. <nav class="tsd-navigation primary">
  2644. <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
  2645. <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
  2646. <div class="tsd-accordion-details">
  2647. <ul>
  2648. <li class="current"><a href="../modules.html">@rcsb/rcsb-<wbr/>saguaro-<wbr/>3d</a>
  2649. <ul>
  2650. <li class="current tsd-kind-module"><a href="../modules/RcsbFv3DAssembly.html">Rcsb<wbr/>Fv3DAssembly</a>
  2651. <ul>
  2652. <li class="current tsd-kind-namespace tsd-parent-kind-module"><a href="../modules/RcsbFv3DAssembly._internal_.html">&lt;internal&gt;</a>
  2653. <ul>
  2654. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_geo_geometry_text_font_atlas_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>geo/geometry/text/font-<wbr/>atlas&quot;</a></li>
  2655. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_gl_render_object_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>gl/render-<wbr/>object&quot;</a></li>
  2656. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_gl_renderable_schema_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>gl/renderable/schema&quot;</a></li>
  2657. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>model/structure/model&quot;</a>
  2658. <ul>
  2659. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.IndexedCustomProperty.html">Indexed<wbr/>Custom<wbr/>Property</a></li>
  2660. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Symmetry.html">Symmetry</a></li>
  2661. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.html">Types</a>
  2662. <ul>
  2663. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.BondType.html">Bond<wbr/>Type</a></li>
  2664. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.SecondaryStructureType.html">Secondary<wbr/>Structure<wbr/>Type</a></li></ul></li></ul></li>
  2665. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>model/structure/model/properties/atomic&quot;</a>
  2666. <ul>
  2667. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.AtomicHierarchy.html">Atomic<wbr/>Hierarchy</a></li>
  2668. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.AtomicIndex.html">Atomic<wbr/>Index</a></li></ul></li>
  2669. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_builder_structure_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/builder/structure/representation&quot;</a>
  2670. <ul>
  2671. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_builder_structure_representation_.StructureRepresentationBuilder.html">Structure<wbr/>Representation<wbr/>Builder</a></li></ul></li>
  2672. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_data_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/data&quot;</a></li>
  2673. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_misc_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/misc&quot;</a></li>
  2674. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_model_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/model&quot;</a></li>
  2675. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/representation&quot;</a>
  2676. <ul>
  2677. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_representation_.VolumeRepresentation3DHelpers.html">Volume<wbr/>Representation3DHelpers</a></li></ul></li>
  2678. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_shape_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/shape&quot;</a></li>
  2679. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_volume_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/volume&quot;</a></li>
  2680. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_repr_structure_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>repr/structure/representation&quot;</a></li>
  2681. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_repr_volume_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>repr/volume/representation&quot;</a></li>
  2682. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_symbol_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>script/language/symbol&quot;</a>
  2683. <ul>
  2684. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_symbol_.Arguments.html">Arguments</a></li></ul></li>
  2685. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_type_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>script/language/type&quot;</a></li>
  2686. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_state_state_builder_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>state/state/builder&quot;</a></li>
  2687. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_state_transformer_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>state/transformer&quot;</a></li>
  2688. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_task_execution_synchronous_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>task/execution/synchronous&quot;</a></li>
  2689. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_binding_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/binding&quot;</a></li>
  2690. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_clip_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/clip&quot;</a>
  2691. <ul>
  2692. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_clip_.Clip.html">Clip</a></li></ul></li>
  2693. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_color_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/color/color&quot;</a>
  2694. <ul>
  2695. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_color_.Color.html">Color</a></li></ul></li>
  2696. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/color/index&quot;</a>
  2697. <ul>
  2698. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.Color.html">Color</a></li>
  2699. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.ColorScale.html">Color<wbr/>Scale</a></li></ul></li>
  2700. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_uuid_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/uuid&quot;</a></li>
  2701. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Arguments.html">Arguments</a></li>
  2702. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ArrayEncoder.html">Array<wbr/>Encoder</a></li>
  2703. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Assembly.html">Assembly</a></li>
  2704. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Asset.html">Asset</a></li>
  2705. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.AtomicHierarchy.html">Atomic<wbr/>Hierarchy</a></li>
  2706. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.AtomicIndex.html">Atomic<wbr/>Index</a></li>
  2707. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Axes3D.html">Axes3D</a></li>
  2708. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Binding.html">Binding</a>
  2709. <ul>
  2710. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Binding.Trigger.html">Trigger</a></li></ul></li>
  2711. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.BitFlags.html">Bit<wbr/>Flags</a></li>
  2712. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Box3D.html">Box3D</a></li>
  2713. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Bundle.html">Bundle</a></li>
  2714. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ButtonsType.html">Buttons<wbr/>Type</a></li>
  2715. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Camera.html">Camera</a></li>
  2716. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CameraTransitionManager.html">Camera<wbr/>Transition<wbr/>Manager</a></li>
  2717. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Canvas3D.html">Canvas3D</a></li>
  2718. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Canvas3DContext.html">Canvas3DContext</a></li>
  2719. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Category.html">Category</a></li>
  2720. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Cell.html">Cell</a></li>
  2721. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifCategory.html">Cif<wbr/>Category</a></li>
  2722. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifExportContext.html">Cif<wbr/>Export<wbr/>Context</a></li>
  2723. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifField.html">Cif<wbr/>Field</a></li>
  2724. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Clipping.html">Clipping</a>
  2725. <ul>
  2726. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Clipping.Groups.html">Groups</a></li></ul></li>
  2727. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CoarseHierarchy.html">Coarse<wbr/>Hierarchy</a></li>
  2728. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.html">Collection</a>
  2729. <ul>
  2730. <li class="selected tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Indexed.html">Indexed</a></li>
  2731. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Keyed.html">Keyed</a></li>
  2732. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Set.html">Set</a></li></ul></li>
  2733. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Color.html">Color</a></li>
  2734. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ColorTheme.html">Color<wbr/>Theme</a></li>
  2735. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Column.html">Column</a>
  2736. <ul>
  2737. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Column.Schema.html">Schema</a></li></ul></li>
  2738. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CompiledQueryFn.html">Compiled<wbr/>Query<wbr/>Fn</a></li>
  2739. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Coordinates.html">Coordinates</a></li>
  2740. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CubeFile.html">Cube<wbr/>File</a></li>
  2741. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CustomPropertyDescriptor.html">Custom<wbr/>Property<wbr/>Descriptor</a></li>
  2742. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Cylinders.html">Cylinders</a></li>
  2743. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.DirectVolume.html">Direct<wbr/>Volume</a></li>
  2744. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.DxFile.html">Dx<wbr/>File</a></li>
  2745. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Encoding.html">Encoding</a></li>
  2746. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Expression.html">Expression</a></li>
  2747. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Field.html">Field</a></li>
  2748. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Generators.html">Generators</a></li>
  2749. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Geometry.html">Geometry</a></li>
  2750. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Grid.html">Grid</a></li>
  2751. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Image.html">Image</a></li>
  2752. <li class="selected tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Indexed.html">Indexed</a></li>
  2753. <li class="selected tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Indexed-1.html">Indexed</a></li>
  2754. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InputObserver.html">Input<wbr/>Observer</a></li>
  2755. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntAdjacencyGraph.html">Int<wbr/>Adjacency<wbr/>Graph</a></li>
  2756. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntMap.html">Int<wbr/>Map</a></li>
  2757. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InterUnitBonds.html">Inter<wbr/>Unit<wbr/>Bonds</a></li>
  2758. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InterUnitGraph.html">Inter<wbr/>Unit<wbr/>Graph</a></li>
  2759. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InteractivityManager.html">Interactivity<wbr/>Manager</a></li>
  2760. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Interval.html">Interval</a></li>
  2761. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntraUnitBonds.html">Intra<wbr/>Unit<wbr/>Bonds</a></li>
  2762. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Iterator.html">Iterator</a></li>
  2763. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Keyed.html">Keyed</a></li>
  2764. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Lines.html">Lines</a></li>
  2765. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.List.html">List</a></li>
  2766. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Location.html">Location</a></li>
  2767. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci.html">Loci</a></li>
  2768. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci-1.html">Loci</a></li>
  2769. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci-2.html">Loci</a></li>
  2770. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.LogEntry.html">Log<wbr/>Entry</a></li>
  2771. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Map.html">Map</a></li>
  2772. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.MarkerActions.html">Marker<wbr/>Actions</a></li>
  2773. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mat3.html">Mat3</a></li>
  2774. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mat4.html">Mat4</a></li>
  2775. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Material.html">Material</a></li>
  2776. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mesh.html">Mesh</a></li>
  2777. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Model.html">Model</a></li>
  2778. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ModifiersKeys.html">Modifiers<wbr/>Keys</a></li>
  2779. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.MolScriptBuilder.html">Mol<wbr/>Script<wbr/>Builder</a></li>
  2780. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Object3D.html">Object3D</a></li>
  2781. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ObjectEvent.html">Object<wbr/>Event</a></li>
  2782. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedMap.html">Ordered<wbr/>Map</a></li>
  2783. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedSet.html">Ordered<wbr/>Set</a></li>
  2784. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedSet-1.html">Ordered<wbr/>Set</a></li>
  2785. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Overpaint.html">Overpaint</a></li>
  2786. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PickingId.html">Picking<wbr/>Id</a></li>
  2787. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PixelData.html">Pixel<wbr/>Data</a></li>
  2788. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginAnimationManager.html">Plugin<wbr/>Animation<wbr/>Manager</a></li>
  2789. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginBehavior.html">Plugin<wbr/>Behavior</a></li>
  2790. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginCommand.html">Plugin<wbr/>Command</a></li>
  2791. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginSpec.html">Plugin<wbr/>Spec</a></li>
  2792. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginState.html">Plugin<wbr/>State</a></li>
  2793. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginStateAnimation.html">Plugin<wbr/>State<wbr/>Animation</a></li>
  2794. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginStateSnapshotManager.html">Plugin<wbr/>State<wbr/>Snapshot<wbr/>Manager</a></li>
  2795. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginToastManager.html">Plugin<wbr/>Toast<wbr/>Manager</a></li>
  2796. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Points.html">Points</a></li>
  2797. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PrincipalAxes.html">Principal<wbr/>Axes</a></li>
  2798. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Progress.html">Progress</a></li>
  2799. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Quat.html">Quat</a></li>
  2800. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.QueryRuntimeArguments.html">Query<wbr/>Runtime<wbr/>Arguments</a></li>
  2801. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.QuerySymbolRuntime.html">Query<wbr/>Symbol<wbr/>Runtime</a></li>
  2802. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Renderer.html">Renderer</a></li>
  2803. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Representation.html">Representation</a>
  2804. <ul>
  2805. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Representation.Loci.html">Loci</a></li></ul></li>
  2806. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RepresentationProvider.html">Representation<wbr/>Provider</a></li>
  2807. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Result.html">Result</a></li>
  2808. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RuntimeContext.html">Runtime<wbr/>Context</a></li>
  2809. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RxEventHelper.html">Rx<wbr/>Event<wbr/>Helper</a></li>
  2810. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Scene.html">Scene</a></li>
  2811. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Script.html">Script</a></li>
  2812. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Segmentation.html">Segmentation</a></li>
  2813. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.html">Seq</a>
  2814. <ul>
  2815. <li class="selected tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Indexed.html">Indexed</a></li>
  2816. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Keyed.html">Keyed</a></li>
  2817. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Set.html">Set</a></li></ul></li>
  2818. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Sequence.html">Sequence</a></li>
  2819. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Set.html">Set</a></li>
  2820. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Set-1.html">Set</a></li>
  2821. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Shape.html">Shape</a></li>
  2822. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SizeTheme.html">Size<wbr/>Theme</a></li>
  2823. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SortedArray.html">Sorted<wbr/>Array</a></li>
  2824. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SortedRanges.html">Sorted<wbr/>Ranges</a></li>
  2825. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Spacegroup.html">Spacegroup</a></li>
  2826. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SpacegroupCell.html">Spacegroup<wbr/>Cell</a></li>
  2827. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Sphere3D.html">Sphere3D</a></li>
  2828. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Spheres.html">Spheres</a></li>
  2829. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Stack.html">Stack</a></li>
  2830. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.State.html">State</a>
  2831. <ul>
  2832. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.State.ObjectEvent.html">Object<wbr/>Event</a></li></ul></li>
  2833. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateAction.html">State<wbr/>Action</a>
  2834. <ul>
  2835. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateAction.Builder.html">Builder</a></li></ul></li>
  2836. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateBuilder.html">State<wbr/>Builder</a></li>
  2837. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObject.html">State<wbr/>Object</a></li>
  2838. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectCell.html">State<wbr/>Object<wbr/>Cell</a></li>
  2839. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectRef.html">State<wbr/>Object<wbr/>Ref</a></li>
  2840. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectSelector.html">State<wbr/>Object<wbr/>Selector</a></li>
  2841. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateTree.html">State<wbr/>Tree</a></li>
  2842. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateTreeSpine.html">State<wbr/>Tree<wbr/>Spine</a></li>
  2843. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StereoCamera.html">Stereo<wbr/>Camera</a></li>
  2844. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Structure.html">Structure</a></li>
  2845. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Structure-1.html">Structure</a></li>
  2846. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureComponentManager.html">Structure<wbr/>Component<wbr/>Manager</a></li>
  2847. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureHierarchyManager.html">Structure<wbr/>Hierarchy<wbr/>Manager</a></li>
  2848. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureQuery.html">Structure<wbr/>Query</a></li>
  2849. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationBuilder.html">Structure<wbr/>Representation<wbr/>Builder</a></li>
  2850. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationPresetProvider.html">Structure<wbr/>Representation<wbr/>Preset<wbr/>Provider</a></li>
  2851. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationRegistry.html">Structure<wbr/>Representation<wbr/>Registry</a></li>
  2852. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureResult.html">Structure<wbr/>Result</a></li>
  2853. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureSelection.html">Structure<wbr/>Selection</a></li>
  2854. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureSequence.html">Structure<wbr/>Sequence</a></li>
  2855. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Substance.html">Substance</a></li>
  2856. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SymmetryGroup.html">Symmetry<wbr/>Group</a></li>
  2857. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SymmetryOperator.html">Symmetry<wbr/>Operator</a></li>
  2858. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Table.html">Table</a></li>
  2859. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Task.html">Task</a></li>
  2860. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TaskManager.html">Task<wbr/>Manager</a></li>
  2861. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Tensor.html">Tensor</a></li>
  2862. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Text.html">Text</a></li>
  2863. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TextureMesh.html">Texture<wbr/>Mesh</a></li>
  2864. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Theme.html">Theme</a></li>
  2865. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Time.html">Time</a></li>
  2866. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Topology.html">Topology</a></li>
  2867. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Traits.html">Traits</a></li>
  2868. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TrajectoryHierarchyPresetProvider.html">Trajectory<wbr/>Hierarchy<wbr/>Preset<wbr/>Provider</a></li>
  2869. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transform.html">Transform</a></li>
  2870. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transformer.html">Transformer</a>
  2871. <ul>
  2872. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transformer.Builder.html">Builder</a></li></ul></li>
  2873. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transparency.html">Transparency</a></li>
  2874. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Type.html">Type</a></li>
  2875. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UUID.html">UUID</a></li>
  2876. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.html">Unit</a>
  2877. <ul>
  2878. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.SymmetryGroup.html">Symmetry<wbr/>Group</a></li>
  2879. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.Traits.html">Traits</a></li></ul></li>
  2880. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UnitRing.html">Unit<wbr/>Ring</a></li>
  2881. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UnitRings.html">Unit<wbr/>Rings</a></li>
  2882. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueBox.html">Value<wbr/>Box</a></li>
  2883. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueCell.html">Value<wbr/>Cell</a></li>
  2884. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueRef.html">Value<wbr/>Ref</a></li>
  2885. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec2.html">Vec2</a></li>
  2886. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec3.html">Vec3</a></li>
  2887. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec4.html">Vec4</a></li>
  2888. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Viewport.html">Viewport</a></li>
  2889. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ViewportScreenshotHelper.html">Viewport<wbr/>Screenshot<wbr/>Helper</a></li>
  2890. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Visual.html">Visual</a></li>
  2891. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VisualUpdateState.html">Visual<wbr/>Update<wbr/>State</a></li>
  2892. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.html">Volume</a>
  2893. <ul>
  2894. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.Cell.html">Cell</a></li>
  2895. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.IsoValue.html">Iso<wbr/>Value</a></li>
  2896. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.Isosurface.html">Isosurface</a></li></ul></li>
  2897. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeHierarchyManager.html">Volume<wbr/>Hierarchy<wbr/>Manager</a></li>
  2898. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeRepresentationRegistry.html">Volume<wbr/>Representation<wbr/>Registry</a></li>
  2899. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerHeader.html">Volume<wbr/>Server<wbr/>Header</a>
  2900. <ul>
  2901. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerHeader.ValueType.html">Value<wbr/>Type</a></li></ul></li>
  2902. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerInfo.html">Volume<wbr/>Server<wbr/>Info</a></li>
  2903. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeStreaming.html">Volume<wbr/>Streaming</a></li></ul></li></ul></li>
  2904. <li class="tsd-kind-module"><a href="../modules/RcsbFv3DCustom.html">Rcsb<wbr/>Fv3DCustom</a></li></ul></li></ul></div></details></nav>
  2905. <nav class="tsd-navigation secondary menu-sticky">
  2906. <ul>
  2907. <li class="current tsd-kind-interface tsd-parent-kind-namespace tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>Indexed</span></a>
  2908. <ul>
  2909. <li class="tsd-kind-constructor tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-512-path"></use><use href="#icon-512-text"></use></svg>constructor</a></li>
  2910. <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#size" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>size</a></li>
  2911. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#_iterator_" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>[iterator]</a></li>
  2912. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#butLast" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>but<wbr/>Last</a></li>
  2913. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#cacheResult" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>cache<wbr/>Result</a></li>
  2914. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#concat" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>concat</a></li>
  2915. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#contains" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>contains</a></li>
  2916. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#count" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>count</a></li>
  2917. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#countBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>count<wbr/>By</a></li>
  2918. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#entries" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>entries</a></li>
  2919. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#entrySeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>entry<wbr/>Seq</a></li>
  2920. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#equals" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>equals</a></li>
  2921. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#every" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>every</a></li>
  2922. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#filter" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>filter</a></li>
  2923. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#filterNot" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>filter<wbr/>Not</a></li>
  2924. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#find" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find</a></li>
  2925. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findEntry" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Entry</a></li>
  2926. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findIndex" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Index</a></li>
  2927. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findKey" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Key</a></li>
  2928. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLast" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Last</a></li>
  2929. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastEntry" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Last<wbr/>Entry</a></li>
  2930. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastIndex" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Last<wbr/>Index</a></li>
  2931. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#findLastKey" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>find<wbr/>Last<wbr/>Key</a></li>
  2932. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#first" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>first</a></li>
  2933. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#flatMap" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>flat<wbr/>Map</a></li>
  2934. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#flatten" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>flatten</a></li>
  2935. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#forEach" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>for<wbr/>Each</a></li>
  2936. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#fromEntrySeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>from<wbr/>Entry<wbr/>Seq</a></li>
  2937. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#get" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get</a></li>
  2938. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#getIn" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>In</a></li>
  2939. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#groupBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>group<wbr/>By</a></li>
  2940. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#has" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has</a></li>
  2941. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#hasIn" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>In</a></li>
  2942. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#hashCode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>hash<wbr/>Code</a></li>
  2943. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#includes" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>includes</a></li>
  2944. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#indexOf" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>index<wbr/>Of</a></li>
  2945. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#interleave" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>interleave</a></li>
  2946. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#interpose" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>interpose</a></li>
  2947. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isEmpty" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Empty</a></li>
  2948. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isSubset" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Subset</a></li>
  2949. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#isSuperset" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Superset</a></li>
  2950. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#join" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>join</a></li>
  2951. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keyOf" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>key<wbr/>Of</a></li>
  2952. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keySeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>key<wbr/>Seq</a></li>
  2953. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#keys" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>keys</a></li>
  2954. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#last" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>last</a></li>
  2955. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#lastIndexOf" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>last<wbr/>Index<wbr/>Of</a></li>
  2956. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#lastKeyOf" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>last<wbr/>Key<wbr/>Of</a></li>
  2957. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#map" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>map</a></li>
  2958. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#max" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>max</a></li>
  2959. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#maxBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>max<wbr/>By</a></li>
  2960. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#min" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>min</a></li>
  2961. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#minBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>min<wbr/>By</a></li>
  2962. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reduce" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>reduce</a></li>
  2963. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reduceRight" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>reduce<wbr/>Right</a></li>
  2964. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#rest" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>rest</a></li>
  2965. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#reverse" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>reverse</a></li>
  2966. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skip" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>skip</a></li>
  2967. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipLast" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>skip<wbr/>Last</a></li>
  2968. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipUntil" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>skip<wbr/>Until</a></li>
  2969. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#skipWhile" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>skip<wbr/>While</a></li>
  2970. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#slice" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>slice</a></li>
  2971. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#some" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>some</a></li>
  2972. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#sort" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>sort</a></li>
  2973. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#sortBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>sort<wbr/>By</a></li>
  2974. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#splice" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>splice</a></li>
  2975. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#take" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>take</a></li>
  2976. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeLast" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>take<wbr/>Last</a></li>
  2977. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeUntil" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>take<wbr/>Until</a></li>
  2978. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#takeWhile" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>take<wbr/>While</a></li>
  2979. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toArray" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Array</a></li>
  2980. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toIndexedSeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Indexed<wbr/>Seq</a></li>
  2981. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toJS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>toJS</a></li>
  2982. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toJSON" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>toJSON</a></li>
  2983. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toKeyedSeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Keyed<wbr/>Seq</a></li>
  2984. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toList" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>List</a></li>
  2985. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toMap" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Map</a></li>
  2986. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toObject" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Object</a></li>
  2987. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toOrderedMap" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Ordered<wbr/>Map</a></li>
  2988. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toOrderedSet" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Ordered<wbr/>Set</a></li>
  2989. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Seq</a></li>
  2990. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSet" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Set</a></li>
  2991. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toSetSeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Set<wbr/>Seq</a></li>
  2992. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#toStack" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>to<wbr/>Stack</a></li>
  2993. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#update" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>update</a></li>
  2994. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#valueSeq" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>value<wbr/>Seq</a></li>
  2995. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#values" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>values</a></li>
  2996. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zip" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>zip</a></li>
  2997. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zipAll" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>zip<wbr/>All</a></li>
  2998. <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.Indexed-3.html#zipWith" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>zip<wbr/>With</a></li></ul></li></ul></nav></div></div>
  2999. <div class="container tsd-generator">
  3000. <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
  3001. <div class="overlay"></div><script src="../assets/main.js"></script></body></html>