I do not know, what this book is trying to say, either. Yet I think, :: does have more meanings in addition to those you mentioned, at least in OO-context. AFAIK,
Animal->foo()
is the same like
Animal::foo("Animal")
Now, if Dog is an Animal, and has no own implementation of the foo()-method,
Dog->foo()
is the same as Dog::foo("Animal") update Animal::foo("Dog") (thanks to ikegami)

Maybe you can clarify your question a little bit further.

As to your p.s., I know :: as the 'scope resolution operator', but I don't know whether this name is really very common in the Perl community.


In reply to Re: ::'s role in strings by mantadin
in thread ::'s role in strings by eff_i_g

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.