File: array_associative.ck

package info (click to toggle)
chuck 1.4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 27,532 kB
  • sloc: cpp: 90,413; ansic: 40,983; yacc: 484; makefile: 339; perl: 86
file content (26 lines) | stat: -rw-r--r-- 580 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// declare regular array (capacity doesn't matter so much)
float foo[4];

// use as int-based array
2.5 => foo[0];

// use as associative array with key "yoyo"
4.0 => foo["yoyo"];

// access as associative (print)
<<< foo["yoyo"] >>>;

// access empty element
<<< foo["gaga"] >>>;  // -> should print 0.0

// add a second associative element
44.0 => foo["yiyi"];

// get the array keys with all of the keys in the array
string keys[0];
foo.getKeys(keys);

<<< keys[0], keys[1] >>>;

// call .help() on an array to get more information about its type, methods, etc.
// foo.help();