- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 671 - 680 of 1,306 for label:perl (0.68 sec)
-
getc.txt
=over =item getc FILEHANDLE X<getc> X<getchar> X<character> X<file, read> =item getc Returns the next character from the input file attached to FILEHANDLE, or the undefined value at end of file or ...perldoc.perl.org/functions/getc.txtRegistered: Fri Apr 18 22:01:15 UTC 2025 - 1.1K bytes - Viewed (0) -
rmdir.txt
=over =item rmdir FILENAME X<rmdir> X<rd> X<directory, remove> =item rmdir Deletes the directory specified by FILENAME if that directory is empty. If it succeeds it returns true; otherwise it retur...perldoc.perl.org/functions/rmdir.txtRegistered: Fri Apr 18 21:28:18 UTC 2025 - 454 bytes - Viewed (0) -
telldir.txt
=over =item telldir DIRHANDLE X<telldir> Returns the current position of the L<C<readdir>|/readdir DIRHANDLE> routines on DIRHANDLE. Value may be given to L<C<seekdir>|/seekdir DIRHANDLE,POS> to ac...perldoc.perl.org/functions/telldir.txtRegistered: Fri Apr 18 21:09:43 UTC 2025 - 385 bytes - Viewed (0) -
seekdir.txt
=over =item seekdir DIRHANDLE,POS X<seekdir> Sets the current position for the L<C<readdir>|/readdir DIRHANDLE> routine on DIRHANDLE. POS must be a value returned by L<C<telldir>|/telldir DIRHANDLE...perldoc.perl.org/functions/seekdir.txtRegistered: Fri Apr 18 22:37:53 UTC 2025 - 354 bytes - Viewed (0) -
localtime.txt
=over =item localtime EXPR X<localtime> X<ctime> =item localtime Converts a time as returned by the time function to a 9-element list with the time analyzed for the local time zone. Typically used ...perldoc.perl.org/functions/localtime.txtRegistered: Sat Apr 19 04:22:18 UTC 2025 - 2.8K bytes - Viewed (0) -
semop.txt
=over =item semop KEY,OPSTRING X<semop> Calls the System V IPC function L<semop(2)> for semaphore operations such as signalling and waiting. OPSTRING must be a packed array of semop structures. Eac...perldoc.perl.org/functions/semop.txtRegistered: Sat Apr 19 04:51:01 UTC 2025 - 815 bytes - Viewed (0) -
elseif.txt
=over =item elseif The "else if" keyword is spelled C<elsif> in Perl. There's no C<elif> or C<else if> either. It does parse C<elseif>, but only to warn you about not using it. See the documentatio...perldoc.perl.org/functions/elseif.txtRegistered: Sat Apr 19 02:27:17 UTC 2025 - 273 bytes - Viewed (0) -
tie.txt
=over =item tie VARIABLE,CLASSNAME,LIST X<tie> This function binds a variable to a package class that will provide the implementation for the variable. VARIABLE is the name of the variable to be en...perldoc.perl.org/functions/tie.txtRegistered: Sat Apr 19 06:27:03 UTC 2025 - 3K bytes - Viewed (0) -
sleep.txt
=over =item sleep EXPR X<sleep> X<pause> =item sleep Causes the script to sleep for (integer) EXPR seconds, or forever if no argument is given. Returns the integer number of seconds actually slept....perldoc.perl.org/functions/sleep.txtRegistered: Sat Apr 19 10:01:52 UTC 2025 - 1.9K bytes - Viewed (0) -
scalar.txt
=over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...perldoc.perl.org/functions/scalar.txtRegistered: Sat Apr 19 09:53:21 UTC 2025 - 1K bytes - Viewed (0)