On Friday, 19 April 2019 at 12:03:33 UTC, Arredondo wrote:
key in aa
Keep in mind that D's `in` operator returns a *pointer* to the element, or null if it isn't there.
If you aren't treating the return value as a pointer, you could hit trouble.
Adam D. Ruppe via Digitalmars-d-learn Fri, 19 Apr 2019 05:45:38 -0700
On Friday, 19 April 2019 at 12:03:33 UTC, Arredondo wrote:
key in aa
Keep in mind that D's `in` operator returns a *pointer* to the element, or null if it isn't there.
If you aren't treating the return value as a pointer, you could hit trouble.