ikod-containers 0.0.19
containers library
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
ikod-containers
HashMap
Main differences from language AA:
- HashMap itself is struct and value (not reference), so any assign
map2 = map1will copy all data from map1 to map2. - HashMap have deprecated "in" operator. Pointer to value in the table is highly unsafe (as stored value location can change on any table mutation). Use
fetchto test presence and fetch value in single API call intead ofin. - Any method from
getfamily returns value stored in table, and never - pointer. This is safe.
Main advantages:
- It is fast, as it do not allocate on every insert and has optimized storage layout.
- It inherit
@nogcand@safeproperties from key and value types, so it can be used in@safeand@nogccode. Note:opIndexcan throw exception so it is not @nogc in any case (use fetch or get with default value if you need @nogc) - Provide stable iteration over container (you can modify/delete table items while iterating over it).
You cah find HashMap API docs here
code sample
import std.range;
import std.algorithm;
import ikod.containers.hashmap;
static string[] words =
[
"hello", "this", "simple", "example", "should", "succeed", "or", "it",
"should", "fail"
];
void main() @safe @nogc
{
HashMap!(string, int) counter;
// count words, simplest and fastest way
foreach (word; words) {
counter[word] = counter.getOrAdd(word, 0) + 1; // getOrAdd() return value from table or add it to table
}
assert(counter.fetch("hello").ok); // fetch() is replacement to "in": you get "ok" if key in table
assert(counter.fetch("hello").value == 1); // and value itself
debug assert(counter["hello"] == 1); // opIndex is not @nogc
debug assert(counter["should"] == 2); // opIndex is not @nogc
assert(counter.contains("hello")); // contains check presence
assert(counter.length == words.length - 1); // because "should" counts only once
// iterators
assert(counter.byKey.count == counter.byValue.count);
assert(words.all!(w => counter.contains(w))); // all words in table
assert(counter.byValue.sum == words.length); // sum of counters must equals to number of words
}
- 0.0.19 released 5 years ago
- ikod/ikod-containers
- BSL-1
- Copyright © 2019, Igor Khasilev
- Authors:
- Dependencies:
- automem
- Versions:
-
Show all 23 versions0.0.22 2021-Oct-26 0.0.21 2021-Aug-19 0.0.20 2020-Oct-11 0.0.19 2020-Oct-01 0.0.18 2020-Oct-01 - Download Stats:
-
-
9 downloads today
-
168 downloads this week
-
484 downloads this month
-
112000 downloads total
-
- Score:
- 2.7
- Short URL:
- ikod-containers.dub.pm