From: Gabor Szabo Date: Wed, 26 Dec 2007 06:49:34 +0000 (+0200) Subject: docs: list of places where $_ is used X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=db1511c850bfe94373082caa16c1f91ab1ce8510;p=p5sagit%2Fp5-mst-13.2.git docs: list of places where $_ is used From: "Gabor Szabo" Message-ID: p4raw-id: //depot/perl@32730 --- diff --git a/pod/perlvar.pod b/pod/perlvar.pod index b2f1484..7f65590 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -148,13 +148,18 @@ don't use it: =item * -Various unary functions, including functions like ord() and int(), as well -as the all file tests (C<-f>, C<-d>) except for C<-t>, which defaults to -STDIN. +The following functions: + +abs, alarm, chomp chop, chr, chroot, cos, defined, eval, exp, glob, +hex, int, lc, lcfirst, length, log, lstat, mkdir, ord, pos, print, +quotemeta, readlink, readpipe, ref, require, reverse, rmdir, sin, split, +sqrt, stat, study, uc, ucfirst, unlink, unpack. =item * -Various list functions like print() and unlink(). +All file tests (C<-f>, C<-d>) except for C<-t>, which defaults to STDIN. +See L + =item * @@ -172,6 +177,10 @@ The implicit iterator variable in the grep() and map() functions. =item * +The implicit variable of given(). + +=item * + The default place to put an input record when a C<< >> operation's result is tested by itself as the sole criterion of a C test. Outside a C test, this will not happen.