Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 711 - 720 of 1,301 for label:perl (0.13 sec)

  1. unshift.txt

    =over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...
    perldoc.perl.org/functions/unshift.txt
    Registered: Mon Nov 24 16:40:04 UTC 2025
    - 922 bytes
    - Viewed (0)
  2. index.txt

    =over =item index STR,SUBSTR,POSITION X<index> X<indexOf> X<InStr> =item index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full...
    perldoc.perl.org/functions/index.txt
    Registered: Mon Nov 24 15:51:17 UTC 2025
    - 1021 bytes
    - Viewed (0)
  3. chop.txt

    =over =item chop VARIABLE X<chop> =item chop( LIST ) =item chop Chops off the last character of a string and returns the character chopped. It is much more efficient than C<s/.$//s> because it neit...
    perldoc.perl.org/functions/chop.txt
    Registered: Mon Nov 24 20:18:23 UTC 2025
    - 749 bytes
    - Viewed (0)
  4. length.txt

    =over =item length EXPR X<length> X<size> =item length Returns the length in I<characters> of the value of EXPR. If EXPR is omitted, returns the length of L<C<$_>|perlvar/$_>. If EXPR is undefined,...
    perldoc.perl.org/functions/length.txt
    Registered: Mon Nov 24 19:46:19 UTC 2025
    - 713 bytes
    - Viewed (0)
  5. study.txt

    =over =item study SCALAR X<study> =item study At this time, C<study> does nothing. This may change in the future. Prior to Perl version 5.16, it would create an inverted index of all characters tha...
    perldoc.perl.org/functions/study.txt
    Registered: Mon Nov 24 21:32:49 UTC 2025
    - 476 bytes
    - Viewed (0)
  6. Thread.txt

    package Thread; use strict; use warnings; no warnings 'redefine'; our $VERSION = '3.06'; $VERSION = eval $VERSION; BEGIN { use Config; if (! $Config{useithreads}) { die("This Perl not built to supp...
    perldoc.perl.org/Thread.txt
    Registered: Wed Nov 26 06:31:42 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  7. Tie::RefHash.txt

    package Tie::RefHash; # git description: v1.40-9-g23812d9 # ABSTRACT: Use references as hash keys our $VERSION = '1.41'; #pod =head1 SYNOPSIS #pod #pod require 5.004; #pod use Tie::RefHash; #pod ti...
    perldoc.perl.org/Tie::RefHash.txt
    Registered: Wed Nov 26 05:32:28 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  8. Test2::Transition.txt

    =pod =head1 NAME Test2::Transition - Transition notes when upgrading to Test2 =head1 DESCRIPTION This is where gotchas and breakages related to the Test2 upgrade are documented. The upgrade causes ...
    perldoc.perl.org/Test2::Transition.txt
    Registered: Tue Dec 02 08:17:53 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. Test2::Util::Sub.txt

    package Test2::Util::Sub; use strict; use warnings; our $VERSION = '1.302210'; use Carp qw/croak carp/; use B(); our @EXPORT_OK = qw{ sub_info sub_name gen_reader gen_writer gen_accessor }; use bas...
    perldoc.perl.org/Test2::Util::Sub.txt
    Registered: Tue Dec 02 08:31:33 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. Test2::Manual::Anatomy::Hubs.txt

    package Test2::Manual::Anatomy::Hubs; use strict; use warnings; our $VERSION = '1.302210'; 1; __END__ =head1 NAME Test2::Manual::Anatomy::Hubs - Internals documentation for the hub stack, and hubs....
    perldoc.perl.org/Test2::Manual::Anatomy::Hubs.txt
    Registered: Tue Dec 02 09:20:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top