Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
231 views

Perl vivification question while dereferencing undefined array reference

I'm having tough time in understanding why the following works: my $array_reference; foreach $element (@{$array_reference}) { # some code } while the following does not work my $array_reference; ...
11
votes
3answers
163 views

Does PHP have autovivification?

Searching PHP.net for autovivification gives no results. At the time of writing, Wikipedia claims that only Perl has it. There are no clearly definitive results when searching Google for "php ...
11
votes
6answers
5k views

What's the best way to initialize a dict of dicts in Python?

A lot of times in Perl, I'll do something like this: $myhash{foo}{bar}{baz} = 1 How would I translate this to Python? So far I have: if not 'foo' in myhash: myhash['foo'] = {} if not 'bar' in ...
10
votes
5answers
588 views

How can I check if a key exists in a deep Perl hash?

If I understand correctly, calling if (exists $ref->{A}->{B}->{$key}) { ... } will spring into existence $ref->{A} and $ref->{A}->{B} even if they did not exist prior to the if! ...
8
votes
4answers
470 views

In a Python dict of dicts, how do you emulate Perl's auto-vivification behavior?

Both Google and the online docs are not delivering much insight on my query, so I thought I would ask the community here. In Perl, you can easily setup a hash-of-a-hash-of-a-hash and test the final ...
7
votes
2answers
194 views

Why is `exists` modifying my constant?

The exists function can unexpectedly autovivify entries in hashes. What surprises me is that this behavior carries over to constants as well: use strict; use warnings; use Data::Dump 'dump'; use ...
6
votes
3answers
114 views

PHP autovivification

Update: My original intention for this question was to determine if PHP actually has this feature. This has been lost in the answers' focus on the scalar issue. Please see this new question instead: ...
5
votes
2answers
72 views

In ruby, why does array append fail on a hash with a default value of empty array?

Code example below. Calling append on a hash value returns correctly but the hash itself doesn't behave as I would expect. ruby-1.9.2-p290 :037 > r = {} => {} ruby-1.9.2-p290 :038 > ...
5
votes
5answers
2k views

How do I disable autovivification in Perl?

Suppose you have a HUGE application "develoopped" ;) by a big team. Here is a simplified model of the potential disaster that may occur when somebody checks too deep in a data structure. If not ...
3
votes
3answers
235 views

How to assign hash[“a”][“b”]= “c” if hash[“a”] doesn't exist?

is there any other simpler way than if (hash.has_key?("a") ) hash["a"]["b"] = "c" else hash["a"] = Hash.new hash["a"]["b"] = "c" end
3
votes
4answers
346 views

Why does Perl autovivify in this case?

Why does $a become an arrayref? I'm not pushing anything to it. perl -MData::Dumper -e 'use strict; 1 for @$a; print Dumper $a' $VAR1 = [];
3
votes
4answers
243 views

Why does Perl's autovivification work in this case?

Can some one help me understand the output of this Perl program: use Data::Dumper; my %hash; $hash{hello} = "foo"; $hash{hello}{world} = "bar"; print $hash{hello} . "\n"; print $hash{hello}{world} . ...
2
votes
2answers
111 views

Autovivification in PHP

if I have this SQL query: select substring(id for 2) as key, yw, count(*) from pref_money group by yw, key returning number of users per week and per key: key | yw | count ...
2
votes
2answers
616 views

advanced python autovivification

This question is about implementing the full Perl autovivification in python. I know similar questions were asked before and so far the best answre is ...
1
vote
1answer
43 views

Autovivification and Javascript

Does autovivification only have to do with "derefencing" undefined structures, because in JavaScript if you specify a index or a property that doesn't exist won't it dynamically create it? But is ...
1
vote
1answer
124 views

How to handle combination []+= for auto-vivifying hash in Ruby?

In order to implement auto-vivification of Ruby hash, one can employ the following class class AutoHash < Hash def initialize(*args) super() @update, @update_index = args[0][:update], ...
1
vote
1answer
170 views

Multiple initialization of auto-vivifying hashes using a new operator in Ruby

I would like to initialize several auto-vivifying hashes by one-line expression. So far I came to an extra method for the AutoHash object: class AutoHash < Hash ... def few(n=0) ...
1
vote
3answers
457 views

Ruby Autovivification

I've been trying to use autovivification in ruby to do simple record consolidation on this: 2009-08-21|09:30:01|A1|EGLE|Eagle Bulk Shpg|BUY|6000|5.03 2009-08-21|09:30:35|A2|JOYG|Joy Global ...
0
votes
2answers
48 views

Getting frequency of nested elements, with relationship retained

I have an array of shop objects which belong to city objects which belong to prefecture objects I'd like to end up with a hash listed by prefecture, then city, then frequency... I came up ...
0
votes
4answers
190 views

Autovivification in C#

Trying to wrap my head around perl's Autovivification and based on what it sounds like, It seems to work similar to dynamics in C# as a dynamic object is not assigned a type until runtime or, am I ...