digitalmars.D.announce - Hash Tables in D
- Walter Bright (2/2) Jan 01 2016 http://minas-mina.com/2016/01/01/associative-arrays/
- Minas Mina (2/4) Jan 01 2016 Thanks for sharing this. I am the author. :)
- Walter Bright (2/8) Jan 01 2016 You're welcome, and thanks for writing the nice article.
- Martin Nowak (5/12) Jan 03 2016 There is a bug.
- Minas Mina (4/16) Jan 03 2016 The reference states that keys: "Returns dynamic array, the
- Bastiaan Veelo (7/45) Jan 04 2016 Hi,
- Martin Nowak (4/12) Jan 04 2016 Sorry my mistake, I never use aa.keys (instead of aa.byKey) b/c it
- Minas Mina (3/17) Jan 05 2016 I haven't found a way to clear an AA without allocating though.
- Jacob Carlborg (4/6) Jan 05 2016 Set it to "null", or will that allocate a new one?
- Minas Mina (3/7) Jan 05 2016 It won't, but to use it again you need to allocate a new one (If
- Jacob Carlborg (11/13) Jan 06 2016 Not explicitly. I don't know if the runtime allocates a new one. This wo...
- Minas Mina (21/34) Jan 06 2016 I believe it does, check out this example:
- Rory McGuire via Digitalmars-d-announce (9/44) Jan 06 2016 works:
- Adrian Matoga (32/36) Jan 07 2016 I've recently hit this when trying to remove some of the elements
- Marc =?UTF-8?B?U2Now7x0eg==?= (8/18) Jan 07 2016 We don't have the means to do that currently, neither at
- Steven Schveighoffer (13/50) Jan 07 2016 With dcollections [1] I had a feature called "purging" where you would
- Jacob Carlborg (4/14) Jan 07 2016 In Ruby that's called "reject", i.e. the opposite of "filter".
- Andre Polykanine via Digitalmars-d-announce (8/8) Jan 09 2016 WBvDda> http://minas-mina.com/2016/01/01/associative-arrays/
http://minas-mina.com/2016/01/01/associative-arrays/ https://www.reddit.com/r/programming/comments/3z03ji/hash_tables_in_the_d_programming_language/
Jan 01 2016
On Friday, 1 January 2016 at 13:59:35 UTC, Walter Bright wrote:http://minas-mina.com/2016/01/01/associative-arrays/ https://www.reddit.com/r/programming/comments/3z03ji/hash_tables_in_the_d_programming_language/Thanks for sharing this. I am the author. :)
Jan 01 2016
On 1/1/2016 7:27 AM, Minas Mina wrote:On Friday, 1 January 2016 at 13:59:35 UTC, Walter Bright wrote:You're welcome, and thanks for writing the nice article.http://minas-mina.com/2016/01/01/associative-arrays/ https://www.reddit.com/r/programming/comments/3z03ji/hash_tables_in_the_d_programming_language/Thanks for sharing this. I am the author. :)
Jan 01 2016
On 01/01/2016 04:27 PM, Minas Mina wrote:On Friday, 1 January 2016 at 13:59:35 UTC, Walter Bright wrote:There is a bug. You should never do this b/c of iterator/range invalidation. foreach (key; aa.keys) aa.remove(key);http://minas-mina.com/2016/01/01/associative-arrays/ https://www.reddit.com/r/programming/comments/3z03ji/hash_tables_in_the_d_programming_language/Thanks for sharing this. I am the author. :)
Jan 03 2016
On Sunday, 3 January 2016 at 19:29:05 UTC, Martin Nowak wrote:On 01/01/2016 04:27 PM, Minas Mina wrote:The reference states that keys: "Returns dynamic array, the elements of which are the keys in the associative array". Isn't the array newly allocated?On Friday, 1 January 2016 at 13:59:35 UTC, Walter Bright wrote:There is a bug. You should never do this b/c of iterator/range invalidation. foreach (key; aa.keys) aa.remove(key);http://minas-mina.com/2016/01/01/associative-arrays/ https://www.reddit.com/r/programming/comments/3z03ji/hash_tables_in_the_d_programming_language/Thanks for sharing this. I am the author. :)
Jan 03 2016
On Monday, 4 January 2016 at 07:09:30 UTC, Minas Mina wrote:On Sunday, 3 January 2016 at 19:29:05 UTC, Martin Nowak wrote:Hi, You are right:There is a bug. You should never do this b/c of iterator/range invalidation. foreach (key; aa.keys) aa.remove(key);The reference states that keys: "Returns dynamic array, the elements of which are the keys in the associative array". Isn't the array newly allocated?void main() { import std.stdio; int[int] aa; foreach (i; 0..9) aa[i] = i * 10; writeln(aa); // [0:0, 6:60, 7:70, 2:20, 3:30, 1:10, 8:80, 5:50, 4:40] foreach (key; aa.keys) aa.remove(key); writeln(aa); // [] }This would be a bug (segfault on my machine):foreach (key; aa.byKey) aa.remove(key);Note that, in this example, there is no need to remove every element separately, you can also just dovoid main() { import std.stdio; int[int] aa; foreach (i; 0..9) aa[i] = i * 10; writeln(aa); // [0:0, 6:60, 7:70, 2:20, 3:30, 1:10, 8:80, 5:50, 4:40] aa = null; writeln(aa); // [] }Bastiaan.
Jan 04 2016
On 01/04/2016 09:06 AM, Bastiaan Veelo wrote:This would be a bug (segfault on my machine):Sorry my mistake, I never use aa.keys (instead of aa.byKey) b/c it allocates. So it's still sort of a bug to recommend people allocating an array ;).foreach (key; aa.byKey) aa.remove(key);Note that, in this example, there is no need to remove every element separately, you can also just do
Jan 04 2016
On Monday, 4 January 2016 at 19:58:03 UTC, Martin Nowak wrote:On 01/04/2016 09:06 AM, Bastiaan Veelo wrote:I haven't found a way to clear an AA without allocating though. (Creating a new one doesn't count).This would be a bug (segfault on my machine):Sorry my mistake, I never use aa.keys (instead of aa.byKey) b/c it allocates. So it's still sort of a bug to recommend people allocating an array ;).foreach (key; aa.byKey) aa.remove(key);Note that, in this example, there is no need to remove every element separately, you can also just do
Jan 05 2016
On 2016-01-05 11:19, Minas Mina wrote:I haven't found a way to clear an AA without allocating though. (Creating a new one doesn't count).Set it to "null", or will that allocate a new one? -- /Jacob Carlborg
Jan 05 2016
On Tuesday, 5 January 2016 at 13:36:48 UTC, Jacob Carlborg wrote:On 2016-01-05 11:19, Minas Mina wrote:It won't, but to use it again you need to allocate a new one (If I'm not mistaken).I haven't found a way to clear an AA without allocating though. (Creating a new one doesn't count).Set it to "null", or will that allocate a new one?
Jan 05 2016
On 2016-01-05 15:44, Minas Mina wrote:It won't, but to use it again you need to allocate a new one (If I'm not mistaken).Not explicitly. I don't know if the runtime allocates a new one. This works: void main() { auto foo = ["foo" : 1]; foo = null; foo["bar"] = 2; assert(foo["bar"] == 2); } -- /Jacob Carlborg
Jan 06 2016
On Wednesday, 6 January 2016 at 12:19:45 UTC, Jacob Carlborg wrote:On 2016-01-05 15:44, Minas Mina wrote:I believe it does, check out this example: import std.stdio; class C { int[int] squares; } void main() { auto squares = [0 : 0, 1 : 1]; C c = new C(); c.squares = squares; writeln(c.squares is squares); // true squares = null; squares[10] = 100; writeln(c.squares is squares); // false } If the runtime used the same underlying memory, the second writeln() would print true, right? So if I am correct, a new AA is allocated.It won't, but to use it again you need to allocate a new one (If I'm not mistaken).Not explicitly. I don't know if the runtime allocates a new one. This works: void main() { auto foo = ["foo" : 1]; foo = null; foo["bar"] = 2; assert(foo["bar"] == 2); }
Jan 06 2016
On 06 Jan 2016 3:25 PM, "Minas Mina via Digitalmars-d-announce" < digitalmars-d-announce puremagic.com> wrote:On Wednesday, 6 January 2016 at 12:19:45 UTC, Jacob Carlborg wrote:works:On 2016-01-05 15:44, Minas Mina wrote:It won't, but to use it again you need to allocate a new one (If I'm not mistaken).Not explicitly. I don't know if the runtime allocates a new one. Thiswould print true, right?void main() { auto foo = ["foo" : 1]; foo = null; foo["bar"] = 2; assert(foo["bar"] == 2); }I believe it does, check out this example: import std.stdio; class C { int[int] squares; } void main() { auto squares = [0 : 0, 1 : 1]; C c = new C(); c.squares = squares; writeln(c.squares is squares); // true squares = null; squares[10] = 100; writeln(c.squares is squares); // false } If the runtime used the same underlying memory, the second writeln()So if I am correct, a new AA is allocated.Probably depends on the current implementation. If you are using an associative array you are going to be allocating at least a little. If you used an associative array backed by two arrays you could allocate and reuse memory when null is assigned. It would also be able to keep its insertion order.
Jan 06 2016
On Sunday, 3 January 2016 at 19:29:05 UTC, Martin Nowak wrote:There is a bug. You should never do this b/c of iterator/range invalidation. foreach (key; aa.keys) aa.remove(key);I've recently hit this when trying to remove some of the elements from an AA while iterating over it. It's easy to forget that it is not allowed, especially when working on more complex algorithms. Accidentally, it worked all fine even with large data sets with DMD 2.069, but with GDC mysterious segfaults appeared - the first thought in such case was obviously a bug in GDC or in the older front-end. However, this is a very convenient, natural and intuitive syntax for something that is needed quite frequently, yet this code breaks silently in non-predictable ways. There are already registered issues concerning this (or similar with insertion) problem, including: https://issues.dlang.org/show_bug.cgi?id=4179 https://issues.dlang.org/show_bug.cgi?id=2255 https://issues.dlang.org/show_bug.cgi?id=10821 https://issues.dlang.org/show_bug.cgi?id=10876 https://issues.dlang.org/show_bug.cgi?id=13903 I've personally encountered segfaults, infinite loops, programs producing incorrect results. Some solutions to this were proposed in the bug reports - either: a) explicitly allow removing during iteration, and make sure it always works, or b) explicitly disallow removing during iteration, and always throw an Error whenever it is attempted. In some cases it could even be detectable in compile time. And I don't mean including a single sentence about this somewhere in the docs. I mean an error reported by the compiler and/or runtime. The runtime checks could be disabled for -release, but there should be at least an option to detect such errors. Probably the worst part of it is that you're free to wrap it in safe, while it's not safe at all.
Jan 07 2016
On Thursday, 7 January 2016 at 12:26:29 UTC, Adrian Matoga wrote:b) explicitly disallow removing during iteration, and always throw an Error whenever it is attempted. In some cases it could even be detectable in compile time. And I don't mean including a single sentence about this somewhere in the docs. I mean an error reported by the compiler and/or runtime. The runtime checks could be disabled for -release, but there should be at least an option to detect such errors.We don't have the means to do that currently, neither at compile-time, nor at runtime. Both would require some kind of borrowing detection, either to make the AA `const` during iteration, or to set and reset a flag indicating that it's being iterated, allowing it to assert() at runtime.Probably the worst part of it is that you're free to wrap it in safe, while it's not safe at all.That's something we can change right now. I guess `remove` must be ` system`.
Jan 07 2016
On 1/7/16 7:26 AM, Adrian Matoga wrote:On Sunday, 3 January 2016 at 19:29:05 UTC, Martin Nowak wrote:With dcollections [1] I had a feature called "purging" where you would iterate over a collection like this: foreach(ref bool removeIt, int val; collection) { if(someCondition) removeIt = true; } The entire reason for this is because you can do something similar in C++ containers, and I found it absolutely annoying that the existing container classes don't allow this. A very frequent use of containers is to iterate through picking which ones should be removed (think of a cache) -Steve [1] http://schveiguy.github.io/dcollections/There is a bug. You should never do this b/c of iterator/range invalidation. foreach (key; aa.keys) aa.remove(key);I've recently hit this when trying to remove some of the elements from an AA while iterating over it. It's easy to forget that it is not allowed, especially when working on more complex algorithms. Accidentally, it worked all fine even with large data sets with DMD 2.069, but with GDC mysterious segfaults appeared - the first thought in such case was obviously a bug in GDC or in the older front-end. However, this is a very convenient, natural and intuitive syntax for something that is needed quite frequently, yet this code breaks silently in non-predictable ways. There are already registered issues concerning this (or similar with insertion) problem, including: https://issues.dlang.org/show_bug.cgi?id=4179 https://issues.dlang.org/show_bug.cgi?id=2255 https://issues.dlang.org/show_bug.cgi?id=10821 https://issues.dlang.org/show_bug.cgi?id=10876 https://issues.dlang.org/show_bug.cgi?id=13903 I've personally encountered segfaults, infinite loops, programs producing incorrect results. Some solutions to this were proposed in the bug reports - either: a) explicitly allow removing during iteration, and make sure it always works, or b) explicitly disallow removing during iteration, and always throw an Error whenever it is attempted. In some cases it could even be detectable in compile time. And I don't mean including a single sentence about this somewhere in the docs. I mean an error reported by the compiler and/or runtime. The runtime checks could be disabled for -release, but there should be at least an option to detect such errors. Probably the worst part of it is that you're free to wrap it in safe, while it's not safe at all.
Jan 07 2016
On 2016-01-07 15:11, Steven Schveighoffer wrote:With dcollections [1] I had a feature called "purging" where you would iterate over a collection like this: foreach(ref bool removeIt, int val; collection) { if(someCondition) removeIt = true; } The entire reason for this is because you can do something similar in C++ containers, and I found it absolutely annoying that the existing container classes don't allow this. A very frequent use of containers is to iterate through picking which ones should be removed (think of a cache)In Ruby that's called "reject", i.e. the opposite of "filter". -- /Jacob Carlborg
Jan 07 2016
WBvDda> http://minas-mina.com/2016/01/01/associative-arrays/ This article translated into Russian: http://habrahabr.ru/post/274723/ -- With best regards from Ukraine, Andre Skype: Francophile Twitter: m_elensule; Facebook: menelion
Jan 09 2016