Autovivification means implicitly creating data structures accessed via name when explicitly creating their data, such as initializing a hash upon assigning the first key/value pair, or creating a folder upon saving a file in a new path.
0
votes
2answers
72 views
mysterious key come out of no where in Perl 5.14 hash table
I am using a hash table in my code
my %stat = ();
# read files and do some initialization
# like $stat{$key} = {k1=>v1, k2=>v2, k3=>v3};
# I have located the buggy code
# I want to do ...
1
vote
1answer
70 views
How can I access a deeply nested dictionary using tuples?
I would like to expand on the autovivification example given in a previous answer from nosklo to allow dictionary access by tuple.
nosklo's solution looks like this:
class ...
1
vote
2answers
75 views
Perl autovivification with TIEHASH
This is the expected and intuitive behavior of a tied hash to handle $h{a}++:
$ perl -E'
sub DESTROY {}
sub AUTOLOAD { say "$AUTOLOAD @_"; bless {} }
tie %h, main;
$h{a}++;
'
...
1
vote
3answers
56 views
Hash created by autovivification has extra keys
This is what I have
my %count_words;
while (<DATA>){
my $line= $_;
chomp $line;
my @words = split (/ /, "$line");
foreach my $word(@words){
$count_words{"$word"}++;
...
4
votes
2answers
92 views
Is there a library to support autovivification on Javascript objects?
Is there anyway, either natively or through a library, to use autovivification on Javascript objects?
IE, assuming foo is an object with no properties, being able to just do foo.bar.baz = 5 rather ...
2
votes
3answers
93 views
How to nonvivificate in Perl
Let's say I have a Perl script that does:
my $hash = {};
$hash->{'a'} = {aa => 'b'};
$hash->{'b'} = undef;
for (qw(a b c)) {
if(defined $hash->{$_}->{aa})
{
say ...
5
votes
2answers
66 views
In python, how does the following AutoVivification class work?
In searching for a way of working with nested dictionaries, I found the following code posted by nosklo, which I would like to have explained, please.
class AutoVivification(dict):
...
3
votes
5answers
147 views
In Perl, how to use 'defined' function on elements of two-dimensional array?
I am trying to check if an element is defined, using defined function in Perl.
Code :
$mylist[0][0]="wqeqwe";
$mylist[0][1]="afasf";
$mylist[1][0]="lkkjh";
print scalar(@mylist), "\n";
if ...
4
votes
3answers
324 views
Ruby Hash Initializers
Hash initializers:
# this
animals = Hash.new { [] }
animals[:dogs] << :Scooby
animals[:dogs] << :Scrappy
animals[:dogs] << :DynoMutt
animals[:squirrels] << :Rocket
...
3
votes
1answer
263 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 ...
5
votes
2answers
169 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 > ...
0
votes
2answers
60 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 ...
14
votes
6answers
2k views
How to change behavior of dict() for an instance
So I'm writing a class that extends a dictionary which right now uses a method "dictify" to transform itself into a dict. What I would like to do instead though is change it so that calling dict() on ...
11
votes
3answers
402 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
259 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 ...
6
votes
3answers
232 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: ...
3
votes
3answers
1k 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
0
votes
4answers
232 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 ...
2
votes
2answers
147 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
...
7
votes
2answers
229 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 ...
13
votes
5answers
2k 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!
...
1
vote
1answer
187 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
321 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)
...
9
votes
4answers
1k 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 ...
5
votes
4answers
2k views
How do I do advanced Python hash autovivification?
This question is about implementing the full Perl autovivification in Python. I know similar questions were asked before and so far the best answer is in "What is the best way to implement nested ...
3
votes
4answers
429 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
285 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} . ...
1
vote
3answers
726 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 ...
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 ...
33
votes
5answers
18k 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 ...