Symbol



Symbol

NAME
SYNOPSIS
DESCRIPTION
BUGS

NAME

Symbol − manipulate Perl symbols and their names

SYNOPSIS

    use Symbol;
    $sym = gensym;
        open($sym, "filename");
    $_ = <$sym>;
    # etc.
    ungensym $sym;      # no effect
    # replace *FOO{IO} handle but not $FOO, %FOO, etc.
    *FOO = geniosym;
        print qualify("x"), "\n";                           # "main::x"
        print qualify("x", "FOO"), "\n";             # "FOO::x"
        print qualify("BAR::x"), "\n";                 # "BAR::x"
        print qualify("BAR::x", "FOO"), "\n";   # "BAR::x"
        print qualify("STDOUT", "FOO"), "\n";   # "main::STDOUT" (global)
        print qualify(\*x), "\n";                           # returns \*x
        print qualify(\*x, "FOO"), "\n";             # returns \*x
    use strict refs;
    print { qualify_to_ref $fh } "foo!\n";
    $ref = qualify_to_ref $name, $pkg;
        use Symbol qw(delete_package);
        delete_package('Foo::Bar');
    print "deleted\n" unless exists $Foo::{'Bar::'};

DESCRIPTION

"Symbol::gensym" creates an anonymous glob and returns a reference to it. Such a glob reference can be used as a file or directory handle.

For backward compatibility with older implementations that didn’t support anonymous globs, "Symbol::ungensym" is also provided. But it doesn’t do anything.

"Symbol::geniosym" creates an anonymous IO handle. This can be assigned into an existing glob without affecting the non-IO portions of the glob.

"Symbol::qualify" turns unqualified symbol names into qualified variable names (e.g. "myvar" −> "MyPackage::myvar"). If it is given a second parameter, "qualify" uses it as the default package; otherwise, it uses the package of its caller. Regardless, global variable names (e.g. " STDOUT", "ENV", "SIG" ) are always qualified with "main::".

Qualification applies only to symbol names (strings). References are left unchanged under the assumption that they are glob references, which are qualified by their nature.

"Symbol::qualify_to_ref" is just like "Symbol::qualify" except that it returns a glob ref rather than a symbol name, so you can use the result even if "use strict 'refs'" is in effect.

"Symbol::delete_package" wipes out a whole package namespace. Note this routine is not exported by default--you may want to import it explicitly.

BUGS

"Symbol::delete_package" is a bit too powerful. It undefines every symbol that lives in the specified package. Since perl, for performance reasons, does not perform a symbol table lookup each time a function is called or a global variable is accessed, some code that has already been loaded and that makes use of symbols in package "Foo" may stop working after you delete "Foo", even if you reload the "Foo" module afterwards.







Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.