Re: What is the current point to empty/null associative arrays?

2013-12-03 Thread Regan Heath
On Mon, 02 Dec 2013 13:27:32 -, Cooler wrote: Stop hollywaring here. Yeah, we're not. I am simply expressing an opinion and I'm not really interested in the OP issue at this time. R

Re: What is the current point to empty/null associative arrays?

2013-12-02 Thread Regan Heath
On Sat, 30 Nov 2013 04:37:00 -, Peter Alexander wrote: On Friday, 29 November 2013 at 15:55:57 UTC, Regan Heath wrote: On Fri, 29 Nov 2013 09:51:05 -, Peter Alexander wrote: On Friday, 29 November 2013 at 09:39:57 UTC, Cooler wrote: On Friday, 29 November 2013 at 08:48:03 UTC,

Re: What is the current point to empty/null associative arrays?

2013-11-29 Thread Peter Alexander
On Friday, 29 November 2013 at 15:55:57 UTC, Regan Heath wrote: On Fri, 29 Nov 2013 09:51:05 -, Peter Alexander wrote: On Friday, 29 November 2013 at 09:39:57 UTC, Cooler wrote: On Friday, 29 November 2013 at 08:48:03 UTC, Chris Cain wrote: On Friday, 29 November 2013 at 08:32:12 UTC, C

Re: What is the current point to empty/null associative arrays?

2013-11-29 Thread Regan Heath
On Fri, 29 Nov 2013 09:51:05 -, Peter Alexander wrote: On Friday, 29 November 2013 at 09:39:57 UTC, Cooler wrote: On Friday, 29 November 2013 at 08:48:03 UTC, Chris Cain wrote: On Friday, 29 November 2013 at 08:32:12 UTC, Cooler wrote: ... Try making fill array look more like this:

Re: What is the current point to empty/null associative arrays?

2013-11-29 Thread Peter Alexander
On Friday, 29 November 2013 at 09:39:57 UTC, Cooler wrote: On Friday, 29 November 2013 at 08:48:03 UTC, Chris Cain wrote: On Friday, 29 November 2013 at 08:32:12 UTC, Cooler wrote: ... Try making fill array look more like this: void fillArray(ref string[int] a) { a[10] = "A"; } The issue is

Re: What is the current point to empty/null associative arrays?

2013-11-29 Thread Maxim Fomin
On Friday, 29 November 2013 at 08:48:03 UTC, Chris Cain wrote: On Friday, 29 November 2013 at 08:32:12 UTC, Cooler wrote: ... Try making fill array look more like this: void fillArray(ref string[int] a) { a[10] = "A"; } The issue is that an array (and/or associative array) is a value type.

Re: What is the current point to empty/null associative arrays?

2013-11-29 Thread Chris Cain
On Friday, 29 November 2013 at 08:32:12 UTC, Cooler wrote: ... Try making fill array look more like this: void fillArray(ref string[int] a) { a[10] = "A"; } The issue is that an array (and/or associative array) is a value type. Basically, you can look at it as a struct with a pointer (and s