-
-
13 Mar 2022 08:40:18 UTC
- Distribution: perl
- Module version: 4.6
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (2152)
- Testers
- Kwalitee
Bus factor: 15- License: perl_5
- Activity
24 month- Tools
- Download (17.35MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- perl5-porters@perl.org
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
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
andDESTROY
). It causes tied file handles to behave exactly like standard file handles and allow for selective overwriting of methods.Module Install Instructions
To install utf8, copy and paste the appropriate command in to your terminal.
cpanm utf8
perl -MCPAN -e shell install utf8
For more information on module installation, please visit the detailed CPAN module installation guide.