- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 461 - 470 of 1,306 for label:perl (0.02 sec)
-
sysseek.txt
=over =item sysseek FILEHANDLE,POSITION,WHENCE X<sysseek> X<lseek> Sets FILEHANDLE's system position I<in bytes> using L<lseek(2)>. FILEHANDLE may be an expression whose value gives the name of the...perldoc.perl.org/functions/sysseek.txtRegistered: Fri Apr 18 11:31:30 UTC 2025 - 1.9K bytes - Viewed (0) -
hex.txt
=over =item hex EXPR X<hex> X<hexadecimal> =item hex Interprets EXPR as a hex string and returns the corresponding numeric value. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. print hex '0xAf'; # p...perldoc.perl.org/functions/hex.txtRegistered: Fri Apr 18 12:48:54 UTC 2025 - 938 bytes - Viewed (0) -
unlink.txt
=over =item unlink LIST X<unlink> X<delete> X<remove> X<rm> X<del> =item unlink Deletes a list of files. On success, it returns the number of files it successfully deleted. On failure, it returns f...perldoc.perl.org/functions/unlink.txtRegistered: Fri Apr 18 10:18:14 UTC 2025 - 1K bytes - Viewed (0) -
chr.txt
=over =item chr NUMBER X<chr> X<character> X<ASCII> X<Unicode> =item chr Returns the character represented by that NUMBER in the character set. For example, C<chr(65)> is C<"A"> in either ASCII or ...perldoc.perl.org/functions/chr.txtRegistered: Fri Apr 18 12:15:24 UTC 2025 - 711 bytes - Viewed (0) -
opendir.txt
=over =item opendir DIRHANDLE,EXPR X<opendir> Opens a directory named EXPR for processing by L<C<readdir>|/readdir DIRHANDLE>, L<C<telldir>|/telldir DIRHANDLE>, L<C<seekdir>|/seekdir DIRHANDLE,POS>...perldoc.perl.org/functions/opendir.txtRegistered: Fri Apr 18 10:12:10 UTC 2025 - 768 bytes - Viewed (0) -
say.txt
=over =item say FILEHANDLE LIST X<say> =item say FILEHANDLE =item say LIST =item say Just like L<C<print>|/print FILEHANDLE LIST>, but implicitly appends a newline at the end of the LIST instead of...perldoc.perl.org/functions/say.txtRegistered: Fri Apr 18 10:26:40 UTC 2025 - 710 bytes - Viewed (0) -
ExtUtils::MakeMaker.txt
# $Id$ package ExtUtils::MakeMaker; use strict; use warnings; BEGIN {require 5.006;} require Exporter; use ExtUtils::MakeMaker::Config; use ExtUtils::MakeMaker::version; # ensure we always have our...perldoc.perl.org/ExtUtils::MakeMaker.txtRegistered: Sat Apr 19 20:10:27 UTC 2025 - 106.7K bytes - Viewed (0) -
Text::Balanced.txt
# Copyright (C) 1997-2001 Damian Conway. All rights reserved. # Copyright (C) 2009 Adam Kennedy. # Copyright (C) 2015, 2022 Steve Hay and other contributors. All rights # reserved. # This module is...perldoc.perl.org/Text::Balanced.txtRegistered: Sat Apr 19 19:33:45 UTC 2025 - 78.9K bytes - Viewed (0) -
overload.txt
package overload; use strict; no strict 'refs'; our $VERSION = '1.37'; our %ops = ( with_assign => "+ - * / % ** << >> x .", assign => "+= -= *= /= %= **= <<= >>= x= .=", num_comparison => "< <= > ...perldoc.perl.org/overload.txtRegistered: Sat Apr 19 18:34:34 UTC 2025 - 53.4K bytes - Viewed (0) -
bignum.txt
package bignum; use strict; use warnings; use Carp qw< carp croak >; our $VERSION = '0.67'; use Exporter; our @ISA = qw( Exporter ); our @EXPORT_OK = qw( PI e bpi bexp hex oct ); our @EXPORT = qw( ...perldoc.perl.org/bignum.txtRegistered: Sat Apr 19 19:49:41 UTC 2025 - 27.5K bytes - Viewed (0)