It's not; autovivification is defined in perlref and is perl automatically treating undef in an lvalue reference context as evaluating to a reference to a newly created item of the correct type (arrayref or hashref). This is at best just undefined in a numeric context (in this case coming from an empty slot in a hash) being treated as a numeric value of zero.

(Now were it $words{$something}->{$_}++ and $words{$something} wasn't defined for a given value of $something then it WOULD be an instance of autovivification (in which case a new hashref would be conjured up, stuck into $words{$something}, and then the key $_ in that new hashref would be looked up (and since it's an empty hash would evaluate to undef which would numerically be zero then that would be incremented to one, and finally that one stored back into that hashref)))

(But as usual for the source . . . INEW)

Edit: tweaked first paragraph to be even more technically correct (the best kind).

The cake is a lie.
The cake is a lie.
The cake is a lie.


In reply to Re^4: regex, find words that occur more than once. by Fletch
in thread regex, find words that occur more than once. by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.