Group
Extension

Matches 1309

Latin1 ( I/IN/INA/Latin1/Latin1-1.22.tar.gz, INA, 2019; MetaCPAN )
Latin1/lib/Elatin1.pm ( view source; MetaCPAN )
   elsif (/\G ((?>\s+)|\#.*) /oxgc) { return $1; }

# if (, elsif (, unless (, while (, until (, given (, and when (

    # given, when

    # P.225 The given Statement
    # in Chapter 15: Smart Matc
 Operators
    # of ISBN 978-0-596-00492-7 Programming Perl 4th Edition.

    # (and so on)

    # ~~

    # P.221 The Smart Match Operator
    # in Chapter 15: Smart Matching and given-when
    # of 
-0-596-00492-7 Programming Perl 4th Edition.

    # (and so on)

    elsif (/\G ((?>

            !~~ | !~ | != | ! |
            %= | % |
            &&= | && | &= | &\.= | &\. | & |
            -= |
Windows1258 ( I/IN/INA/Windows1258/Windows1258-1.22.tar.gz, INA, 2019; MetaCPAN )
Windows1258/lib/Ewindows1258.pm ( view source; MetaCPAN )
   elsif (/\G ((?>\s+)|\#.*) /oxgc) { return $1; }

# if (, elsif (, unless (, while (, until (, given (, and when (

    # given, when

    # P.225 The given Statement
    # in Chapter 15: Smart Matc
 Operators
    # of ISBN 978-0-596-00492-7 Programming Perl 4th Edition.

    # (and so on)

    # ~~

    # P.221 The Smart Match Operator
    # in Chapter 15: Smart Matching and given-when
    # of 
-0-596-00492-7 Programming Perl 4th Edition.

    # (and so on)

    elsif (/\G ((?>

            !~~ | !~ | != | ! |
            %= | % |
            &&= | && | &= | &\.= | &\. | & |
            -= |
Acme-Tools ( K/KJ/KJETIL/Acme-Tools-0.27.tar.gz, KJETIL, 2020; MetaCPAN )
Acme-Tools/Tools.pm ( view source; MetaCPAN )
[$n+1],0,$ds) eq substr($x[$n],0,$ds); #hm
    croak "Could not resolve, perhaps too little time given ($sec), iteratons=$n"
      if $sec>0 and ($Resolve_time=time_fp()-$time_start)>$sec;
    #warn "
# 0
 print in( 'a',  'A','B','C','a');   # 1

I guess in perl 5.10 or perl 6 you could use the C<< ~~ >> operator instead.

=head2 in_num

Just as sub L</in>, but for numbers. Internally uses the perl
SVN-Dump ( B/BO/BOOK/SVN-Dump-0.08.tar.gz, BOOK, 2020; MetaCPAN )
SVN-Dump/lib/SVN/Dump/Headers.pm ( view source; MetaCPAN )
ew( [$hashref] )

Create and return a new empty L<SVN::Dump::Headers> object.

If C<$hashref> is given (it can be a blessed hash reference), the
keys from the hash are used to initialise the headers.
Compiler-Lexer ( G/GO/GOCCY/Compiler-Lexer-0.23.tar.gz, GOCCY, 2020; MetaCPAN )
Compiler-Lexer/gen/gen_decl.pl ( view source; MetaCPAN )
nd             	<>
Operator        	Compare             	<=>
Operator        	PolymorphicCompare  	~~
Operator        	RegOK               	=~
Operator        	RegNot              	!~
Operator        
Test-Mocha ( S/ST/STEVENL/Test-Mocha-0.67.tar.gz, STEVENL, 2019; MetaCPAN )
Test-Mocha/lib/Test/Mocha/Method.pm ( view source; MetaCPAN )
f ( ref($x) eq 'HASH' ) {
        # smartmatch only matches the hash keys
        return if not $x ~~ $y;

        # ... but we want to match the hash values too
        foreach ( keys %{$x} ) {
     
        return 1;
    }

    # avoid smartmatch doing number matches on strings
    # e.g. '5x' ~~ 5 is true
    return if looks_like_number($x) xor looks_like_number($y);

    return $x ~~ $y;
}

1;
Text-Markdown-Hoedown ( T/TO/TOKUHIROM/Text-Markdown-Hoedown-1.03.tar.gz, TOKUHIROM, 2019; MetaCPAN )
Text-Markdown-Hoedown/lib/Text/Markdown/Hoedown.pm ( view source; MetaCPAN )
_AUTOLINK

Automatically turn safe URLs into links.

=item HOEDOWN_EXT_STRIKETHROUGH

Parse ~~stikethrough~~ spans.

=item HOEDOWN_EXT_UNDERLINE

Parse _underline_ instead of emphasis.

=item HOEDOWN_
DBD-Neo4p ( M/MA/MAJENSEN/DBD-Neo4p-0.2001.tar.gz, MAJENSEN, 2019; MetaCPAN )
DBD-Neo4p/lib/DBD/Neo4p.pm ( view source; MetaCPAN )
e => 0);
  1;
}

sub FETCH ($$) {
  my ($dbh, $sAttr) = @_;
  use experimental qw/smartmatch/;
  given ($sAttr) {
    when ('AutoCommit') { return $dbh->{$sAttr} }
    when (/^${prefix}_/) { return $d
  }
}

sub STORE ($$$) {
  my ($dbh, $sAttr, $sValue) = @_;
  use experimental qw/smartmatch/;
  given ($sAttr) {
    when ('AutoCommit') {
      local $REST::Neo4p::HANDLE = $dbh->{"${prefix}_Handle"
 @data{@names} = @$row;
    my $h = $ret;
    for my $k (@keys) {
      my $key_from_data;
      given (ref $data{$k}) {
	when (!$_) {
	  $key_from_data = $data{$k};
	}
	when (/REST::Neo4p/) {
	  $key
Test-Expr ( D/DC/DCONWAY/Test-Expr-0.000011.tar.gz, DCONWAY, 2019; MetaCPAN )
Test-Expr/lib/Test/Expr.pm ( view source; MetaCPAN )
    $got, $expected;
    ok $got ne $unexpected;          isnt      $got, $unexpected;
    ok $got ~~ $expected;            is_deeply $got, $expected;
    ok $got =~ $pattern;             like      $g
MySQL-Admin ( L/LZ/LZE/MySQL-Admin-1.18.tar.gz, LZE, 2019; MetaCPAN )
MySQL-Admin/lib/HTML/Editor/Markdown.pm ( view source; MetaCPAN )
l replace this.

Italics	*italics*

Bold	**bold** 

Underline	__underline__	

Strikethrough	~~Strikethrough~~

[link](http://dirk-lindner.com)

[i](http://dirk-lindner.com/foo.png)

=head2 EXPORT

Mar
MongoHosting ( O/OV/OVNTATAR/MongoHosting.tar.gz, OVNTATAR, 2019; MetaCPAN )
MongoHosting/app.pl ( view source; MetaCPAN )
 $zone             = shift;
  my $sizes_collection = $do->sizes;
  my @sizes;
  my $size;

  $zone ~~ $size->regions && push @sizes, $size
    while $size = $sizes_collection->next;

  return sort { $
Bro-Log-Parse ( J/JO/JOHANNA/Bro-Log-Parse-0.08.tar.gz, JOHANNA, 2019; MetaCPAN )
Bro-Log-Parse/lib/Bro/Log/Parse.pod ( view source; MetaCPAN )
value })>

Pass a hashref of options to the constructor for Bro::log::Parse. Options that
can be given (in descending order of importance):

=over 4

=item B<fh>

Filehandle to be used as data source.
Bro-Log-Parse ( J/JO/JOHANNA/Bro-Log-Parse-0.08.tar.gz, JOHANNA, 2019; MetaCPAN )
Bro-Log-Parse/README.pod ( view source; MetaCPAN )
value })>

Pass a hashref of options to the constructor for Bro::log::Parse. Options that
can be given (in descending order of importance):

=over 4

=item B<fh>

Filehandle to be used as data source.
Zeek-Log-Parse ( J/JO/JOHANNA/Zeek-Log-Parse-0.08.tar.gz, JOHANNA, 2019; MetaCPAN )
Zeek-Log-Parse/README.pod ( view source; MetaCPAN )
alue })>

Pass a hashref of options to the constructor for Zeek::log::Parse. Options that
can be given (in descending order of importance):

=over 4

=item B<fh>

Filehandle to be used as data source.
Zeek-Log-Parse ( J/JO/JOHANNA/Zeek-Log-Parse-0.08.tar.gz, JOHANNA, 2019; MetaCPAN )
Zeek-Log-Parse/lib/Zeek/Log/Parse.pod ( view source; MetaCPAN )
alue })>

Pass a hashref of options to the constructor for Zeek::log::Parse. Options that
can be given (in descending order of importance):

=over 4

=item B<fh>

Filehandle to be used as data source.
Mojolicious-Plugin-ErrorTracking-Sentry ( X/XA/XANNI/Mojolicious-Plugin-ErrorTracking-Sentry-1.1.0.tar.gz, XANNI, 2019; MetaCPAN )
Mojolicious-Plugin-ErrorTracking-Sentry/lib/Mojolicious/Plugin/ErrorTracking/Sentry.pm ( view source; MetaCPAN )
_string,
		method  => $req->method,
		data    => $req->params->to_hash,
		headers => { map { $_ => ~~ $req->headers->header($_) } @{ $req->headers->names } },
	);
	my %stacktrace_context
		= $stacktra
DBIx-Class-Result-Validation ( N/NO/NOUDARD/DBIx-Class-Result-Validation-0.17.tar.gz, NOUDARD, 2019; MetaCPAN )
DBIx-Class-Result-Validation/lib/DBIx/Class/Result/Validation.pm ( view source; MetaCPAN )
$field}->{default_value})
            or  
            (defined ($self->$field) && !($self->$field ~~ @{ $self->result_source->columns_info->{$field}->{extra}->{list} }))
      )
    );
}

=head2 vali
fo->{$field}->{data_type});
        if ( $self->result_source->columns_info->{$field}->{data_type} ~~ @NUMERICAL_DATA_TYPE){
            $self->add_result_error( $field, "$field can not be updated to 
Mojolicious-Command-Author-generate-role ( W/WR/WROG/Mojolicious-Command-Author-generate-role-0.002.tar.gz, WROG, 2019; MetaCPAN )
Mojolicious-Command-Author-generate-role/lib/Mojolicious/Command/Author/generate/role.pm ( view source; MetaCPAN )
classes.

If the intended consumer class is not specified it will be inferred from the
role name given (whatever precedes C<::Role::> in the name) or otherwise
default to L<Mojo::Base>.

=head1 ATTRIB
WWW-AzimuthAero ( P/PA/PAVELSR/WWW-AzimuthAero-0.4.tar.gz, PAVELSR, 2019; MetaCPAN )
WWW-AzimuthAero/lib/WWW/AzimuthAero/Flight.pm ( view source; MetaCPAN )

    no if ( $] >= 5.018 ), warnings => 'experimental';
    $array_ref //= [];
    return $pattern ~~ @{$array_ref};
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

WWW::AzimuthAero::Flight - Flig
App-PLab ( K/KA/KARASIK/App-PLab-1.05.tar.gz, KARASIK, 2019; MetaCPAN )
App-PLab/lib/App/PLab/MorphometryI.pod ( view source; MetaCPAN )
n by pressing secong preview button.

Third algorithm finds areas with minimal and maximal areas given ( in pixels), that could be contoured by line with width equal to
"edge size" amount. It's previe

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.