digitalmars.D.learn - a syntax question
- Justin (1/1) Mar 20 may you please describe this line?: int[char[2]] aa;
- H. S. Teoh (5/6) Mar 20 It declares an associative array named `aa` mapping keys of type char[2]
On Fri, Mar 20, 2026 at 08:34:42PM +0000, Justin via Digitalmars-d-learn wrote:may you please describe this line?: int[char[2]] aa;It declares an associative array named `aa` mapping keys of type char[2] to int. A char[2] is a static array of 2 char's. --T
Mar 20








"H. S. Teoh" <hsteoh qfbox.info>