Top "Associative-array" questions

An associative array is an abstract data type composed of a collection of unique keys mapped to a collection of values.

How are javascript arrays implemented?

Namely, how does the following code: var sup = new Array(5); sup[0] = 'z3ero'; sup[1] = 'o3ne'; sup[4] = 'f3our'; document.…

javascript arrays associative-array
Get nth key of associative php array

I want to get the value of the KEY of an associative PHP array at a specific entry. Specifically, I …

php arrays key associative-array
Convert backslash-delimited string into an associative array

I have a string like this: key1\value1\key2\value2\key3\value3\key4\value4\key5\value5 And I'd like it …

php arrays string associative-array explode
Bash associative array size

Is there a way to get size of associative array in bash: declare -A array ...without iterating through the elements? …

linux bash associative-array
How to add an array value to the middle of an associative array?

Lets say I have this array: $array = array('a'=>1,'z'=>2,'d'=>4); Later in the script, I want …

php arrays associative-array
In PHP, is there a function that returns an array made up of the value of a key from an array of associative arrays?

I'm sure this question has been asked before, my apologies for not finding it first. The original array: [0] => Array ( […

php arrays associative-array array-reduce pluck
Using constants as indices for JavaScript associative arrays

I'm looking to create an associative array in JavaScript, but use constants defined as part of the class as indices. …

javascript constants associative-array
Associative Array versus SplObjectStorage

I'm working on code to manage a collection of unique objects. The first prototype of this code utilises an associative …

php oop associative-array spl
Validate dicts in Python

i looking for tool, or examples to/how to validate dictionaries in python. For example, i have dict: test = {'foo' : …

python validation dictionary schema associative-array
What is the difference between nested array and associative array?

There are two links http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/composites.htm#LNPLS99981 and Purpose of using different …

sql oracle plsql associative-array nested-table