- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 651 - 660 of 3,449 for filetype:txt (0.05 sec)
-
rand.txt
=over =item rand EXPR X<rand> X<random> =item rand Returns a random fractional number greater than or equal to C<0> and B<less> than the value of EXPR. (EXPR should be positive.) If EXPR is omitted...perldoc.perl.org/functions/rand.txtRegistered: Sat Aug 16 19:10:26 UTC 2025 - 1.3K bytes - Viewed (0) -
lcfirst.txt
=over =item lcfirst EXPR X<lcfirst> X<lowercase> =item lcfirst Returns the value of EXPR with the first character lowercased. This is the internal function implementing the C<\l> escape in double-q...perldoc.perl.org/functions/lcfirst.txtRegistered: Sat Aug 16 18:40:11 UTC 2025 - 376 bytes - Viewed (0) -
perltooc.txt
=encoding utf8 =head1 NAME perltooc - Links to information on object-oriented programming in Perl =head1 DESCRIPTION For information on OO programming with Perl, please see L<perlootut> and L<perlo...perldoc.perl.org/perltooc.txtRegistered: Sat Aug 16 17:53:36 UTC 2025 - 294 bytes - Viewed (0) -
system.txt
=over =item system LIST X<system> X<shell> =item system PROGRAM LIST Does exactly the same thing as L<C<exec>|/exec LIST>, except that a fork is done first and the parent process waits for the chil...perldoc.perl.org/functions/system.txtRegistered: Sun Aug 17 03:37:55 UTC 2025 - 3.5K bytes - Viewed (0) -
srand.txt
=over =item srand EXPR X<srand> X<seed> X<randseed> =item srand Sets and returns the random number seed for the L<C<rand>|/rand EXPR> operator. The point of the function is to "seed" the L<C<rand>|...perldoc.perl.org/functions/srand.txtRegistered: Sat Aug 16 21:47:26 UTC 2025 - 3K bytes - Viewed (0) -
dbmopen.txt
=over =item dbmopen HASH,DBNAME,MASK X<dbmopen> X<dbm> X<ndbm> X<sdbm> X<gdbm> [This function has been largely superseded by the L<C<tie>|/tie VARIABLE,CLASSNAME,LIST> function.] This binds a L<dbm...perldoc.perl.org/functions/dbmopen.txtRegistered: Sun Aug 17 02:32:22 UTC 2025 - 2.1K bytes - Viewed (0) -
shift.txt
=over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...perldoc.perl.org/functions/shift.txtRegistered: Sun Aug 17 00:59:42 UTC 2025 - 1.1K bytes - Viewed (0) -
push.txt
=over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...perldoc.perl.org/functions/push.txtRegistered: Sun Aug 17 00:55:15 UTC 2025 - 628 bytes - Viewed (0) -
atan2.txt
=over =item atan2 Y,X X<atan2> X<arctangent> X<tan> X<tangent> Returns the arctangent of Y/X in the range -PI to PI. For the tangent operation, you may use the L<C<Math::Trig::tan>|Math::Trig/B<tan...perldoc.perl.org/functions/atan2.txtRegistered: Sun Aug 17 02:48:36 UTC 2025 - 449 bytes - Viewed (0) -
format.txt
=over =item format X<format> Declare a picture format for use by the L<C<write>|/write FILEHANDLE> function. For example: format Something = Test: @<<<<<<<< @||||| @>>>>> $str, $%, '$' . int($num) ...perldoc.perl.org/functions/format.txtRegistered: Sat Aug 16 22:10:10 UTC 2025 - 377 bytes - Viewed (0)