Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Tie::StdHandle

Name Tie::StdHandle
Version 4.4
Located at /usr/share/perl5
File /usr/share/perl5/Tie/StdHandle.pm
Is Core Yes
Search CPAN for this module Tie::StdHandle
Documentation Tie::StdHandle
Module Details Tie::StdHandle

NAME

Tie::StdHandle - base class definitions for tied handles


SYNOPSIS

    package NewHandle;
    require Tie::Handle;
    @ISA = qw(Tie::Handle);
    sub READ { ... }            # Provide a needed method
    sub TIEHANDLE { ... }       # Overrides inherited method
    package main;
    tie *FH, 'NewHandle';


DESCRIPTION

The Tie::StdHandle package provide most methods for file handles described in perltie (the exceptions are UNTIE and DESTROY). It causes tied file handles to behave exactly like standard file handles and allow for selective overwriting of methods.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024