containers deepdive
TLDR
- custom types as keys require hash + == procs
- generally all table types have the same interface; CountTables a bit more
- critbit can be used as a sorted string dictionary
- system.table is often used to collect and convert literals into std/tables
links
- high impact
- niche
TODOs
tables
- the initBlah procs arent necessary as their initialized by default
- use {...}.toBlah or newBlah(...) instead
- custom types require an overloaded hash and == proc before being use as keys in a table
table types
- each has a blahRef variant
- == check returns true if both/neither are nil and
- count: content + count identical
- ordered: content + order identical
- table: content identical
strtabs
- efficient string to string hash table supporting case/style in/sensitive
- style insenstive: ignores _ and case
- case is/not sensitive does what you think
- particularly powerful as values can be retrieved from ram if $key not found
strtab types
- FormatFlag enum
- useEnvironment value for $key if not found
- useEmpty string as default $key value
- useKey for value if not found in env/table
- StringTableMode enum
- modeCaseInSensitive
- modeStyleInsensitive
- StringTableObj
- StringTableRef
Lets
Consts
anotherTable = (data: [(2851137560, "first", 1), (0, "", 0), (0, "", 0), (436751995, "second", 2), (0, "", 0), (0, "", 0), (0, "", 0), (0, "", 0)], counter: 2)
- Source Edit
countTable = (data: [(0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (119, 1), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (111, 4), (112, 2), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (114, 2), (99, 1), (0, 0), (115, 1), (0, 0), (0, 0), (101, 2)], counter: 7, isSorted: false)
- anyOpenArrayLikeThing.toCountTable Source Edit
hashTable = (data: [(0, "", ""), (0, "", ""), (2350561362, "lname", "hall"), (3368835387, "fname", "noah"), (0, "", ""), (0, "", ""), (0, "", ""), (0, "", "")], counter: 2)
- newTable Source Edit
orderededTable = (data: [(0, 0, "", ""), (0, 0, "", ""), (2350561362, -1, "lname", "hall"), (3368835387, 2, "fname", "noah"), (0, 0, "", ""), (0, 0, "", ""), (0, 0, "", ""), (0, 0, "", "")], counter: 2, first: 3, last: 2)
- ('a', 5), ('b', 9).toOrderedTable Source Edit
Procs
proc echoMutated(): void {....raises: [], tags: [], forbids: [].}
- Source Edit