CARVIEW |
Select Language
HTTP/2 200
server: nginx
content-type: text/html;charset=UTF-8
content-encoding: gzip
content-security-policy: default-src 'self'; connect-src 'self' *.google-analytics.com; img-src 'self' data: www.google-analytics.com www.googletagmanager.com; script-src 'self' 'unsafe-inline' www.google-analytics.com www.googletagmanager.com; style-src 'self'; report-uri /csp-reports
accept-ranges: bytes
age: 0
date: Wed, 15 Oct 2025 01:05:30 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210070-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760490330.538765,VS0,VE814
vary: Accept-Encoding
strict-transport-security: max-age=31557600
content-length: 3065
Tie::StdHandle - base class definitions for tied handles - Perldoc Browser
CONTENTS
#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.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.