Group
Extension

Matches 1364

Persistent-Base ( D/DW/DWINTERS/Persistent-Base-0.52.tar.gz, DWINTERS, 2000; MetaCPAN )
Persistent-Base/lib/Persistent/DataType/DateTime.pm ( view source; MetaCPAN )
are set to undef.

=item I<$year, $month, $day, $hour, $min, $sec>

If more than one argument is given (and less than 7), it is assumed
that the date and time are being given as a series of integers i
dbd-summaries ( T/TI/TIMB/dbd-summaries-19990519.tar.gz, TIMB, 1999; MetaCPAN )
dbd-summaries/dbd-pg.pod ( view source; MetaCPAN )
----------------------------
 ~~    Same as SQL "LIKE" operator                'scrappy,marc' ~~ '%scrappy%'
 !~~   Same as SQL "NOT LIKE" operator            'bruce' !~~ '%al%'
 ~     Match (regex), 
Log-ErrLogger ( W/WO/WORENKD/Log-ErrLogger-1.5.tar.gz, WORENKD, 1999; MetaCPAN )
Log-ErrLogger/ErrLogger.pm ( view source; MetaCPAN )
########

=item $logger->set_file_handle( HANDLE );

Associates the error logger object with the given (opened) IO::Handle, and
closes the old file handle that used to be associated with the object (i
Getopt-Tabular ( G/GW/GWARD/Getopt-Tabular-0.3.tar.gz, GWARD, 1999; MetaCPAN )
Getopt-Tabular/Tabular.pm ( view source; MetaCPAN )
<<<<<<<<<<<<  ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
   # $option,        $help
   # ~~                   ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
   #                 $help
              ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
   #                 $help
   # ~~                   ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
   #                 $help
 . ("<" x $maxoption) . " ^" . ("<" x ($textlength-1)) . "\n".
      "\$option, \$help\n" .
      "~~  " . (" " x $maxoption) . " ^" . ("<" x ($textlength-1)) . "\n" .
      "\$help\n.";
   $alt_forma
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/90_csv.t ( view source; MetaCPAN )
 if ($in ~~ Array && $in.elems > 0) {
        $type ~= $in.list[0].WHAT.gist;
        $type ~~ s{")("} = " of ";
        }
    my Str $s-in = sprintf "%-16s %s", $type, $in.gist;
    $s-in ~~ s:g{\n} 
> $csv),  "Sub/Obj { s-in ($in) }");
    }

# Test supported "out" formats
my $datn = $data; $datn ~~ s:g{ "\r\n" } = "\n";
for in () -> $in {
    is (csv (in => $in, out => Str, :!quote-space), $data
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/lib/Text/CSV.pod6 ( view source; MetaCPAN )
my $fh  = open "test.csv", :r, chomp => False;
 while (my @row = $csv.getline($fh)) {
     @row[2] ~~ m/pattern/ or next; # 3rd field should match
     @rows.push: @row;
     }
 $fh.close;

 # and wri
cept and C<False>
for records to reject.

 csv (in => "file.csv", filter => {
            $^row[2] ~~ /a/ &&  # third field should contain an "a"
            $^row[4].chars > 4  # length of the 5th fi
at have no visible data

This filter is a shortcut for

 filter => { $^row.first: { .defined && $_ ~~ /\S/ }}

This filter rejects all lines that I<not> have at least one field that does
not evaluate 
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/85_util.t ( view source; MetaCPAN )
sep, ",", "Sep = ,");

for < , ; > -> $sep {
    my Str $data = "bAr,foo\n1,2\n3,4,5\n";
    $data ~~ s:g{ "," } = $sep;

    $csv.column-names (False);
    {   my $fh = IO::String.new: $data;
	ok (my
,", ";" ];
for ",", ";", "|", "\t" -> $sep {
    my Str $data = "bAr,foo\n1,2\n3,4,5\n";
    $data ~~ s:g{ "," } = $sep;

    $csv.column-names (False);
    {   my $fh = IO::String.new: $data;
	ok (my
>], "Headers");
    }

for < , ; > -> $sep {
    my Str $data = "bAr,foo\n1,2\n3,4,5\n";
    $data ~~ s:g{ "," } = $sep;

    $csv.column-names (False);
    {   my $fh = IO::String.new: $data;
	ok (my
Gateway ( R/RR/RRA/Gateway-0.42.tar.gz, RRA, 1998; MetaCPAN )
Gateway/pod/master.pod ( view source; MetaCPAN )
ticle C<read()> method.

=item apply (MODULES)

This method hands the message off to each module given (if no modules are
given, the message is given to each module registered by C<modules()> in
the o
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/30_field.t ( view source; MetaCPAN )
);
my $n = +$f;
ok ($n ~~ Num,                "Undefined in Numeric context type");
is ($n.defined,   False,      "Undefined in Numeric context defined");
my $s = ~$f;
ok ($s ~~ Str,                "U
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/45_eol.t ( view source; MetaCPAN )
     if ($expect.defined && $expect ~~ m/ "\r\n" /) {
                        my $r = $expect;
                        my $n = $expect;
                        $n ~~ s:g{ "\r\n" } = "\n";
            
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/41_null.t ( view source; MetaCPAN )

    "0\n\0",
    "\0\n\0",
    );
my %exp;
for @pat -> $pat {
    my $x = $pat;
    $x ~~ s:g/\0/\\0/;
    $x ~~ s:g/\n/\\n/;
    %exp{$pat} = $x;
    }
my Str @line = ("", Str, "0\n", "", "\0\0\n0")
PodParser ( B/BR/BRADAPP/PodParser-1.02.tar.gz, BRADAPP, 1997; MetaCPAN )
PodParser/Parser.pm ( view source; MetaCPAN )
n level should be incremented (decremented) by the given
number. If only a plus or minus sign is given (without a number) then
the current indentation level is incremented or decremented by some
defau
sc_rate ( J/JO/JONG/sc_rate_1.2.tar.gz, JONG, 1997; MetaCPAN )
sc_rate/sc_rate.pl ( view source; MetaCPAN )
n_and_get_sc_rate_pairs(\%input, \$window_size)};
# Function  : scans input sequences(arg1) in a given(arg2) window size and gets
#             each composition and sequence identity rate(sc_rate) of 
s$k"}[$i]}=~ s/\,//g;  }
				  }
			  }
		 }
  }
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
  #     Following is to make ends of sequences ne
$offset,$larg)="$gap_char"x$diff;
		  }
	  }
  } print "\n";

  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  #     Following is the core code for making block printing
  
DBD-Pg ( M/ME/MERGL/DBD-Pg-0.3.tar.gz, JBAKER, 1997; MetaCPAN )
DBD-Pg/dbd-pg.pod ( view source; MetaCPAN )
----------------------------
 ~~    Same as SQL "LIKE" operator                'scrappy,marc' ~~ '%scrappy%'
 !~~   Same as SQL "NOT LIKE" operator            'bruce' !~~ '%al%'
 ~     Match (regex), 
self_self_search ( J/JO/JONG/self_self_search.1.3.tar.gz, JONG, 1997; MetaCPAN )
self_self_search/self_self_search.pl ( view source; MetaCPAN )
----------------------------------------------------------------------------------

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# All the defaults
#______________________________
$sub_dir_size=2;
$make_msp_in_sub

	   }
	   close FILE_1;
   }


   #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`~~~~~~~~~~~~~~~~~~~~~`
   # (3) When ranges information is given(via \@range), seq in those ranges a
	   }
	   return(\%Sizes);
   }
   #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
   # (5) when hash which has range info is given(@range should not be defined)
   #__
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/20_file.t ( view source; MetaCPAN )
and @arg = (",", "", "");
    loop (my $a = 0; $a < @arg.elems; $a++) {
	my $exp = @arg[$a];
	$exp ~~ s{^ '"' (.*) '"' $} = $0;
	is (@row[$a].text, $exp, "$tst - field $a");
	}
    ok ($csv.parse ("")
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/79_callbacks.t ( view source; MetaCPAN )
7,g";
$fh.close;

$fh = open $tfn, :r;
sub Filter (CSV::Row $r) returns Bool { +$r[0] % 2 && $r[1] ~~ /^ <[abcd]> / ?? True !! False };
$csv = Text::CSV.new;
ok ($csv.callbacks ("filter", &Filter), "A
Text-CSV ( A/AL/ALANCITT/Text-CSV-0.01.tar.gz, HMBRAND, 1997; MetaCPAN )
Text-CSV/Text-CSV-0.007/t/16_methods.t ( view source; MetaCPAN )
ext::CSV.new,            "new");

ok (my $version = $csv.version,         "version");
ok ($version ~~ m{^ <[0..9.-]>+ $},     "CSV-$version");

is ($csv.quote_char,            '"',    "quote_char");
i
GraphMaker ( F/FP/FPIVARI/GraphMaker-2.1.tar.gz, FPIVARI, 1997; MetaCPAN )
GraphMaker/cgi-lib.pl ( view source; MetaCPAN )
ce, it is useful
# to combine both the form and the script in one place.  If no parameters
# are given (i.e., ReadParse returns FALSE), then a form could be output.

# If a reference to a hash is give
SquareMaker ( F/FP/FPIVARI/SquareMaker-4.2.tar.gz, FPIVARI, 1997; MetaCPAN )
SquareMaker/cgi-lib.pl ( view source; MetaCPAN )
ce, it is useful
# to combine both the form and the script in one place.  If no parameters
# are given (i.e., ReadParse returns FALSE), then a form could be output.

# If a reference to a hash is give

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