mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-17 13:02:47 +00:00
71 lines
5.7 KiB
Plaintext
71 lines
5.7 KiB
Plaintext
nimTitle sets sets.html module std/sets 0
|
|
nim HashSet sets.html#HashSet object HashSet 66
|
|
nim OrderedSet sets.html#OrderedSet object OrderedSet 78
|
|
nim SomeSet sets.html#SomeSet type SomeSet 85
|
|
nim defaultInitialSize sets.html#defaultInitialSize const defaultInitialSize 89
|
|
nim init sets.html#init,HashSet[A] proc init[A](s: var HashSet[A]; initialSize = defaultInitialSize) 98
|
|
nim initHashSet sets.html#initHashSet proc initHashSet[A](initialSize = defaultInitialSize): HashSet[A] 117
|
|
nim `[]` sets.html#[],HashSet[A],A proc `[]`[A](s: var HashSet[A]; key: A): var A 137
|
|
nim contains sets.html#contains,HashSet[A],A proc contains[A](s: HashSet[A]; key: A): bool 152
|
|
nim len sets.html#len,HashSet[A] proc len[A](s: HashSet[A]): int 173
|
|
nim card sets.html#card,HashSet[A] proc card[A](s: HashSet[A]): int 187
|
|
nim incl sets.html#incl,HashSet[A],A proc incl[A](s: var HashSet[A]; key: A) 194
|
|
nim incl sets.html#incl,HashSet[A],HashSet[A] proc incl[A](s: var HashSet[A]; other: HashSet[A]) 211
|
|
nim toHashSet sets.html#toHashSet,openArray[A] proc toHashSet[A](keys: openArray[A]): HashSet[A] 229
|
|
nim items sets.html#items.i,HashSet[A] iterator items[A](s: HashSet[A]): A 249
|
|
nim containsOrIncl sets.html#containsOrIncl,HashSet[A],A proc containsOrIncl[A](s: var HashSet[A]; key: A): bool 275
|
|
nim excl sets.html#excl,HashSet[A],A proc excl[A](s: var HashSet[A]; key: A) 295
|
|
nim excl sets.html#excl,HashSet[A],HashSet[A] proc excl[A](s: var HashSet[A]; other: HashSet[A]) 312
|
|
nim missingOrExcl sets.html#missingOrExcl,HashSet[A],A proc missingOrExcl[A](s: var HashSet[A]; key: A): bool 331
|
|
nim pop sets.html#pop,HashSet[A] proc pop[A](s: var HashSet[A]): A 351
|
|
nim clear sets.html#clear,HashSet[A] proc clear[A](s: var HashSet[A]) 370
|
|
nim union sets.html#union,HashSet[A],HashSet[A] proc union[A](s1, s2: HashSet[A]): HashSet[A] 391
|
|
nim intersection sets.html#intersection,HashSet[A],HashSet[A] proc intersection[A](s1, s2: HashSet[A]): HashSet[A] 413
|
|
nim difference sets.html#difference,HashSet[A],HashSet[A] proc difference[A](s1, s2: HashSet[A]): HashSet[A] 444
|
|
nim symmetricDifference sets.html#symmetricDifference,HashSet[A],HashSet[A] proc symmetricDifference[A](s1, s2: HashSet[A]): HashSet[A] 468
|
|
nim `+` sets.html#+,HashSet[A],HashSet[A] proc `+`[A](s1, s2: HashSet[A]): HashSet[A] 492
|
|
nim `*` sets.html#*,HashSet[A],HashSet[A] proc `*`[A](s1, s2: HashSet[A]): HashSet[A] 496
|
|
nim `-` sets.html#-,HashSet[A],HashSet[A] proc `-`[A](s1, s2: HashSet[A]): HashSet[A] 500
|
|
nim `-+-` sets.html#-+-,HashSet[A],HashSet[A] proc `-+-`[A](s1, s2: HashSet[A]): HashSet[A] 504
|
|
nim disjoint sets.html#disjoint,HashSet[A],HashSet[A] proc disjoint[A](s1, s2: HashSet[A]): bool 509
|
|
nim `<` sets.html#<,HashSet[A],HashSet[A] proc `<`[A](s, t: HashSet[A]): bool 522
|
|
nim `<=` sets.html#<=,HashSet[A],HashSet[A] proc `<=`[A](s, t: HashSet[A]): bool 537
|
|
nim `==` sets.html#==,HashSet[A],HashSet[A] proc `==`[A](s, t: HashSet[A]): bool 558
|
|
nim map sets.html#map,HashSet[A],proc(A) proc map[A, B](data: HashSet[A]; op: proc (x: A): B {.closure.}): HashSet[B] 568
|
|
nim hash sets.html#hash,HashSet[A] proc hash[A](s: HashSet[A]): Hash 582
|
|
nim `$` sets.html#$,HashSet[A] proc `$`[A](s: HashSet[A]): string 588
|
|
nim initSet sets.html#initSet proc initSet[A](initialSize = defaultInitialSize): HashSet[A] 604
|
|
nim toSet sets.html#toSet,openArray[A] proc toSet[A](keys: openArray[A]): HashSet[A] 607
|
|
nim isValid sets.html#isValid,HashSet[A] proc isValid[A](s: HashSet[A]): bool 610
|
|
nim init sets.html#init,OrderedSet[A] proc init[A](s: var OrderedSet[A]; initialSize = defaultInitialSize) 639
|
|
nim initOrderedSet sets.html#initOrderedSet proc initOrderedSet[A](initialSize = defaultInitialSize): OrderedSet[A] 658
|
|
nim toOrderedSet sets.html#toOrderedSet,openArray[A] proc toOrderedSet[A](keys: openArray[A]): OrderedSet[A] 678
|
|
nim contains sets.html#contains,OrderedSet[A],A proc contains[A](s: OrderedSet[A]; key: A): bool 698
|
|
nim incl sets.html#incl,OrderedSet[A],A proc incl[A](s: var OrderedSet[A]; key: A) 719
|
|
nim incl sets.html#incl,HashSet[A],OrderedSet[A] proc incl[A](s: var HashSet[A]; other: OrderedSet[A]) 736
|
|
nim containsOrIncl sets.html#containsOrIncl,OrderedSet[A],A proc containsOrIncl[A](s: var OrderedSet[A]; key: A): bool 752
|
|
nim excl sets.html#excl,OrderedSet[A],A proc excl[A](s: var OrderedSet[A]; key: A) 771
|
|
nim missingOrExcl sets.html#missingOrExcl,OrderedSet[A],A proc missingOrExcl[A](s: var OrderedSet[A]; key: A): bool 787
|
|
nim clear sets.html#clear,OrderedSet[A] proc clear[A](s: var OrderedSet[A]) 807
|
|
nim len sets.html#len,OrderedSet[A] proc len[A](s: OrderedSet[A]): int 827
|
|
nim card sets.html#card,OrderedSet[A] proc card[A](s: OrderedSet[A]): int 841
|
|
nim `==` sets.html#==,OrderedSet[A],OrderedSet[A] proc `==`[A](s, t: OrderedSet[A]): bool 848
|
|
nim hash sets.html#hash,OrderedSet[A] proc hash[A](s: OrderedSet[A]): Hash 872
|
|
nim `$` sets.html#$,OrderedSet[A] proc `$`[A](s: OrderedSet[A]): string 878
|
|
nim items sets.html#items.i,OrderedSet[A] iterator items[A](s: OrderedSet[A]): A 894
|
|
nim pairs sets.html#pairs.i,OrderedSet[A] iterator pairs[A](s: OrderedSet[A]): tuple[a: int, b: A] 918
|
|
idx hash set sets.html#hash-set_1 Module sets 0
|
|
nimgrp missingorexcl sets.html#missingOrExcl-procs-all proc 331
|
|
nimgrp excl sets.html#excl-procs-all proc 295
|
|
nimgrp containsorincl sets.html#containsOrIncl-procs-all proc 275
|
|
nimgrp == sets.html#==-procs-all proc 558
|
|
nimgrp $ sets.html#$-procs-all proc 588
|
|
nimgrp card sets.html#card-procs-all proc 187
|
|
nimgrp contains sets.html#contains-procs-all proc 152
|
|
nimgrp init sets.html#init-procs-all proc 98
|
|
nimgrp incl sets.html#incl-procs-all proc 194
|
|
nimgrp clear sets.html#clear-procs-all proc 370
|
|
nimgrp len sets.html#len-procs-all proc 173
|
|
nimgrp hash sets.html#hash-procs-all proc 582
|
|
nimgrp items sets.html#items-iterators-all iterator 249
|