Result:
found 278 distributions and 459 files matching your query ! ( run in 0.798 )


Strict-Perl

 view release on metacpan or  search on metacpan

lib/Strict/Perl.pm  view on Meta::CPAN

    # $SIG{__WARN__}, $SIG{__DIE__}
    _SIG();
}

# perl 5.010 or later
sub UNITCHECK {
}

# perl 5.006 or later
sub CHECK {

 view all matches for this distribution


Sub-Attribute-Prototype

 view release on metacpan or  search on metacpan

lib/Sub/Attribute/Prototype.pm  view on Meta::CPAN

=item *

Due to the way that attributes are applied to functions, it is not possible
to apply the prototype immediately during compiletime. Instead, they must be
deferred until a slightly later time. The earliest time that can feasibly be
implemented is C<UNITCHECK> time of the importing module.

This has the unfortunate downside that function prototypes are B<NOT> visible
to later functions in the module itself, though they are visible to the
importing code in the usual way. This means that exported functions will work
just fine from the perspective of a module that C<use>s them, they cannot be

lib/Sub/Attribute/Prototype.pm  view on Meta::CPAN

attributes.

=item *

Because core perl does not have a built-in way for exporter to inject a
C<UNITCHECK> block into their importer, it is necessary to use a non-core XS
module, L<B::CompilerPhase::Hook>, to provide this. As a result, this polyfill
has non-core depenencies when running on older perl versions, and this
dependency includes XS (i.e. compiled) code, and is no longer Pure Perl. It
will not be possible to use tools such as L<App::FatPacker> to bundle this
dependency in order to ship a pure-perl portable script.

lib/Sub/Attribute/Prototype.pm  view on Meta::CPAN


      return @ret;
   };
   { no strict 'refs'; *{"${pkg}::MODIFY_CODE_ATTRIBUTES"} = $MODIFY_CODE_ATTRIBUTES }

   B::CompilerPhase::Hook::enqueue_UNITCHECK( sub {
      foreach ( @prototypes ) {
         my ( $code, $prototype ) = @$_;
         Sub::Util::set_prototype( $_->[1], $_->[0] );
      }
   } );

 view all matches for this distribution


Sub-Call-Tail

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Sub-Current

 view release on metacpan or  search on metacpan

lib/Sub/Current.pm  view on Meta::CPAN

=head1 DESCRIPTION

Sub::Current makes available a function C<ROUTINE()>, that returns a code
reference pointing at the currently executing subroutine.

In a special block (BEGIN, END, CHECK, INIT, and UNITCHECK in Perl 5.10)
this function will return undef.

Outside of a special block (that is, at the top level of a program)
C<ROUTINE()> will return undef as well.

 view all matches for this distribution


Sub-Multi-Tiny

 view release on metacpan or  search on metacpan

lib/Sub/Multi/Tiny.pm  view on Meta::CPAN

        "in file $filename at line $linenum"
    } 2;
EOT

    # Trap out-of-sequence calls.  Currently you can't create a new multisub
    # via eval at runtime.  TODO use UNITCHECK instead to permit doing so?
    $code .= _line_mark_string <<EOT;
    die 'Dispatchers already created - please file a bug report'
        if $P\::_dispatchers_created();

    my \$multi_def = \$_multisubs{'$multi_package'};

 view all matches for this distribution


Sub-Name

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Syntax-Feature-Loop

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Syntax-Feature-QwComments

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Syntax-Feature-Void

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Syntax-Infix-Smartmatch

 view release on metacpan or  search on metacpan

lib/Syntax/Infix/ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


SysV-SharedMem

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


TableDataBundle-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2006.csv  view on Meta::CPAN

DBIx-Class-EncodeColumns-0.01,2006-10-24T18:21:20,ESSKAR,cpan,released,0.01,1,DBIx-Class-EncodeColumns,"Handle column encodings"
Yahoo-Marketing-0.05,2006-10-24T18:35:55,JLAVALLEE,backpan,released,0.05,,Yahoo-Marketing,"an interface for Yahoo! Search Marketing's Web Services."
Sub-ForceEval-1.20,2006-10-24T20:38:56,LEMBARK,backpan,released,1.20,,Sub-ForceEval,"runtime cluck if a dying subrutine is not eval-ed."
DateTime-Natural-Parse-0.04,2006-10-24T22:26:14,SCHUBIGER,backpan,released,0.04,,DateTime-Natural-Parse,"Create machine readable date/time with natural parsing logic"
MessageBus-0.01,2006-10-24T23:12:18,AUDREYT,backpan,released,0.01,1,MessageBus,"Lightweight publish/subscribe messaging system"
Check-UnitCheck-0.10,2006-10-24T23:21:53,AJGOUGH,backpan,released,0.10,1,Check-UnitCheck,"Use best of CHECK or UNITCHECK"
Sys-SigAction-0.10,2006-10-25T00:11:10,LBAXTER,backpan,released,0.10,,Sys-SigAction,"test timing out DBD-Oracle operations with Sys::SigAction"
Encode-RAD50-0.004,2006-10-25T01:00:23,WYANT,backpan,released,0.004,,Encode-RAD50,"Convert to and from the Rad50 character set"
MessageBus-0.02,2006-10-25T01:25:15,AUDREYT,backpan,released,0.02,,MessageBus,"Lightweight publish/subscribe messaging system"
Net-CyanChat-0.04,2006-10-25T02:00:50,KIRSLE,cpan,released,0.04,,Net-CyanChat,"Perl interface for connecting to Cyan Worlds' chat room."
Tk-JBrowseEntry-4.65,2006-10-25T02:06:28,TURNERJW,backpan,released,4.65,,Tk-JBrowseEntry,

share/2006.csv  view on Meta::CPAN

Ingres-Utility-IIMonitor-0.13,2006-10-28T16:11:09,WORM,latest,released,0.13,,Ingres-Utility-IIMonitor,"API to iimonitor Ingres RDBMS utility"
Module-CPANTS-Analyse-0.68,2006-10-28T16:26:44,DOMM,backpan,released,0.68,,Module-CPANTS-Analyse,"Generate Kwalitee ratings for a distribution"
CGI-Application-Plugin-Apache-0.13,2006-10-28T16:37:41,WONKO,backpan,released,0.13,,CGI-Application-Plugin-Apache,"Allow CGI::Application to use Apache::* modules without interference"
Net-Elexol-EtherIO24-0.10,2006-10-28T17:17:40,CHRISY,cpan,released,0.10,,Net-Elexol-EtherIO24,"Object interface for manipulating Elexol Ether I/O 24 units with Perl"
Perl-Configure-0.04,2006-10-28T17:24:06,MSCHILLI,backpan,released,0.04,,Perl-Configure,"Answer perl's ./Configure questions reproducibly"
Check-UnitCheck-0.12,2006-10-28T17:38:09,AJGOUGH,cpan,released,0.12,,Check-UnitCheck,"Use best of CHECK or UNITCHECK"
CPAN-Reporter-0.29,2006-10-28T17:42:59,DAGOLDEN,backpan,released,0.29,,CPAN-Reporter,"Provides Test::Reporter support for CPAN.pm"
Config-XPath-0.04,2006-10-28T18:35:16,PEVANS,backpan,released,0.04,,Config-XPath,"a module for retrieving configuration data from XML files by using XPath queries"
Snort-Rule-1.05,2006-10-28T18:59:57,SAXJAZMAN,backpan,released,1.05,,Snort-Rule,"Perl extension for dynamically building snort rules"
Search-Tools-0.07,2006-10-28T20:03:02,KARMAN,backpan,released,0.07,,Search-Tools,"tools for building search applications"
Time-Available-0.05,2006-10-28T21:33:50,DPAVLIN,latest,released,0.05,,Time-Available,"Perl extension to calculate time availability"

 view all matches for this distribution


TableDataBundle-Perl-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2006.csv  view on Meta::CPAN

DBIx-Class-EncodeColumns-0.01,2006-10-24T18:21:20,ESSKAR,cpan,released,0.01,1,DBIx-Class-EncodeColumns,"Handle column encodings"
Yahoo-Marketing-0.05,2006-10-24T18:35:55,JLAVALLEE,backpan,released,0.05,,Yahoo-Marketing,"an interface for Yahoo! Search Marketing's Web Services."
Sub-ForceEval-1.20,2006-10-24T20:38:56,LEMBARK,backpan,released,1.20,,Sub-ForceEval,"runtime cluck if a dying subrutine is not eval-ed."
DateTime-Natural-Parse-0.04,2006-10-24T22:26:14,SCHUBIGER,backpan,released,0.04,,DateTime-Natural-Parse,"Create machine readable date/time with natural parsing logic"
MessageBus-0.01,2006-10-24T23:12:18,AUDREYT,backpan,released,0.01,1,MessageBus,"Lightweight publish/subscribe messaging system"
Check-UnitCheck-0.10,2006-10-24T23:21:53,AJGOUGH,backpan,released,0.10,1,Check-UnitCheck,"Use best of CHECK or UNITCHECK"
Sys-SigAction-0.10,2006-10-25T00:11:10,LBAXTER,backpan,released,0.10,,Sys-SigAction,"test timing out DBD-Oracle operations with Sys::SigAction"
Encode-RAD50-0.004,2006-10-25T01:00:23,WYANT,backpan,released,0.004,,Encode-RAD50,"Convert to and from the Rad50 character set"
MessageBus-0.02,2006-10-25T01:25:15,AUDREYT,backpan,released,0.02,,MessageBus,"Lightweight publish/subscribe messaging system"
Net-CyanChat-0.04,2006-10-25T02:00:50,KIRSLE,cpan,released,0.04,,Net-CyanChat,"Perl interface for connecting to Cyan Worlds' chat room."
Tk-JBrowseEntry-4.65,2006-10-25T02:06:28,TURNERJW,backpan,released,4.65,,Tk-JBrowseEntry,

share/2006.csv  view on Meta::CPAN

Ingres-Utility-IIMonitor-0.13,2006-10-28T16:11:09,WORM,latest,released,0.13,,Ingres-Utility-IIMonitor,"API to iimonitor Ingres RDBMS utility"
Module-CPANTS-Analyse-0.68,2006-10-28T16:26:44,DOMM,backpan,released,0.68,,Module-CPANTS-Analyse,"Generate Kwalitee ratings for a distribution"
CGI-Application-Plugin-Apache-0.13,2006-10-28T16:37:41,WONKO,backpan,released,0.13,,CGI-Application-Plugin-Apache,"Allow CGI::Application to use Apache::* modules without interference"
Net-Elexol-EtherIO24-0.10,2006-10-28T17:17:40,CHRISY,cpan,released,0.10,,Net-Elexol-EtherIO24,"Object interface for manipulating Elexol Ether I/O 24 units with Perl"
Perl-Configure-0.04,2006-10-28T17:24:06,MSCHILLI,backpan,released,0.04,,Perl-Configure,"Answer perl's ./Configure questions reproducibly"
Check-UnitCheck-0.12,2006-10-28T17:38:09,AJGOUGH,cpan,released,0.12,,Check-UnitCheck,"Use best of CHECK or UNITCHECK"
CPAN-Reporter-0.29,2006-10-28T17:42:59,DAGOLDEN,backpan,released,0.29,,CPAN-Reporter,"Provides Test::Reporter support for CPAN.pm"
Config-XPath-0.04,2006-10-28T18:35:16,PEVANS,backpan,released,0.04,,Config-XPath,"a module for retrieving configuration data from XML files by using XPath queries"
Snort-Rule-1.05,2006-10-28T18:59:57,SAXJAZMAN,backpan,released,1.05,,Snort-Rule,"Perl extension for dynamically building snort rules"
Search-Tools-0.07,2006-10-28T20:03:02,KARMAN,backpan,released,0.07,,Search-Tools,"tools for building search applications"
Time-Available-0.05,2006-10-28T21:33:50,DPAVLIN,latest,released,0.05,,Time-Available,"Perl extension to calculate time availability"

 view all matches for this distribution


Term-ReadLine-Gnu

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Test-DBIx-Class

 view release on metacpan or  search on metacpan

tags  view on Meta::CPAN

Types	../html-formhandler/lib/HTML/FormHandler/Types.pm	/^package HTML::FormHandler::Types;$/;"	p	class:Types
Types	../perl/lib/File/Basename.pm	/^my @Types = (@Ignore_Case, qw(Unix));$/;"	v	file:	class:Basename
UCD	../perl/lib/Unicode/UCD.pm	/^package Unicode::UCD;$/;"	p	class:UCD
UNICODEVERSION	../perl/lib/Unicode/UCD.pm	/^my $UNICODEVERSION;$/;"	v	file:	class:UCD
UNICODE_1_NAMES	../perl/lib/Unicode/UCD.pm	/^my %UNICODE_1_NAMES;$/;"	v	file:	class:UCD
UNITCHECKs	../perl/lib/B/Deparse.pm	/^	my @UNITCHECKs = B::unitcheck_av->isa("B::AV")$/;"	v	file:	class:Deparse
UNIVERSAL	../perl/lib/UNIVERSAL.pm	/^package UNIVERSAL;$/;"	p	class:UNIVERSAL
UNIX	../Object-Remote/lib/Object/Remote/Connector/UNIX.pm	/^package Object::Remote::Connector::UNIX;$/;"	p	class:UNIX
UNRESOLVABLE_CONDITION	../dbix-class/lib/DBIx/Class/ResultSource.pm	/^our $UNRESOLVABLE_CONDITION = UNRESOLVABLE_CONDITION;$/;"	v	file:	class:ArchivedBooks
UNSHIFT	../perl/lib/Tie/Array.pm	/^    sub UNSHIFT { ... }$/;"	s	class:NewArray
UNSHIFT	../perl/lib/Tie/Array.pm	/^sub UNSHIFT   { my $o = shift; unshift(@$o,@_) }$/;"	s	class:StdArray

tags  view on Meta::CPAN

block_fields	../HTML-FormFu/lib/HTML/FormFu/Role/Constraint/Others.pm	/^                $block_fields );$/;"	v	file:	class:Others
block_fields	../HTML-FormFu/lib/HTML/FormFu/Role/Constraint/Others.pm	/^    my $block_fields = $new_block->get_fields;$/;"	v	file:	class:Others
block_list	../html-formhandler/lib/HTML/FormHandler/Blocks.pm	/^    my @block_list;$/;"	v	file:	class:Form
blockname	../perl/lib/B/Deparse.pm	/^    my ($op, $cx, $lowop, $lowprec, $highop, $highprec, $blockname) = @_;$/;"	v	file:	class:Deparse
blocks	../perl/lib/B/Deparse.pm	/^	    my ($name, $blocks) = (shift @names, shift @blocks);$/;"	v	file:	class:Deparse
blocks	../perl/lib/B/Deparse.pm	/^	my @blocks = \\(@BEGINs, @UNITCHECKs, @CHECKs, @INITs, @ENDs);$/;"	v	file:	class:Deparse
blocks	../perl/lib/Unicode/UCD.pm	/^            my %blocks;$/;"	v	file:	class:UCD
blocks_map_ref	../perl/lib/Unicode/UCD.pm	/^ my ($blocks_ranges_ref, $blocks_map_ref) = prop_invmap("Block");$/;"	v	file:	class:UCD
blocks_maps_ref	../perl/lib/Unicode/UCD.pm	/^ my ($blocks_ranges_ref, $blocks_maps_ref, $format, $default)$/;"	v	file:	class:UCD
blocks_ranges_ref	../perl/lib/Unicode/UCD.pm	/^ my ($blocks_ranges_ref, $blocks_map_ref) = prop_invmap("Block");$/;"	v	file:	class:UCD
blocks_ranges_ref	../perl/lib/Unicode/UCD.pm	/^ my ($blocks_ranges_ref, $blocks_maps_ref, $format, $default)$/;"	v	file:	class:UCD

tags  view on Meta::CPAN

names	../html-formhandler/lib/HTML/FormHandler/Pages.pm	/^        my @names = split \/\\.\/, $name;$/;"	v	file:	class:Pages
names	../html-formhandler/lib/HTML/FormHandler/Result/Role.pm	/^        my @names = split \/\\.\/, $name;$/;"	v	file:	class:Role
names	../perl/lib/B/Deparse.pm	/^	    my @names;$/;"	v	file:	class:Deparse
names	../perl/lib/B/Deparse.pm	/^	    my @names;$/;"	v	file:	class:Deparse
names	../perl/lib/B/Deparse.pm	/^	    my @names;$/;"	v	file:	class:Deparse
names	../perl/lib/B/Deparse.pm	/^	my @names = qw(BEGIN UNITCHECK CHECK INIT END);$/;"	v	file:	class:Deparse
names	../perl/lib/B/Deparse.pm	/^    my @names = $padlist->ARRAYelt(0)->ARRAY;$/;"	v	file:	class:Deparse
names	../perl/lib/Benchmark.pm	/^    my @names = sort keys %$alt;$/;"	v	file:	class:Benchmark
names	../perl/lib/Unicode/UCD.pm	/^            my %names;$/;"	v	file:	class:UCD
names	../perl/lib/Unicode/UCD.pm	/^      my ($codepoints, $names, $format, $default) = prop_invmap($cat);$/;"	v	file:	class:UCD
names	../perl/lib/overload/numbers.pm	/^our @names = qw#$/;"	v	class:numbers

 view all matches for this distribution


Test-NoOverride

 view release on metacpan or  search on metacpan

lib/Test/NoOverride.pm  view on Meta::CPAN


=head1 DESCRIPTION

No more accidentally overriding.

Note that private method (like '_foo') and (import|BEGIN|UNITCHECK|CHECK|INIT|END) methods are ignored (means that these are not checked). Moreover, C<new> method is ignored by default. If you would like to check overriding 'new' method, then you sho...

    no_override(
        'Some::Class',
        new => 1, # The 'new' method will be checked.
    );

 view all matches for this distribution


Test-SpellCheck

 view release on metacpan or  search on metacpan

maint/build-perl-dic  view on Meta::CPAN

    accept bind connect getpeername getsockname getsockopt listen recv send setsockopt shutdown socket socketpair
    msgctl msgget msgrcv msgsnd semctl semget semop shmctl shmget shmread shmwrite
    endgrent endhostent endnetent endpwent getgrent getgrgid getgrnam getlogin getpwent getpwnam getpwuid setgrent setpwent
    endprotoent endservent gethostbyaddr gethostbyname gethostent getnetbyaddr getnetbyname getnetent getprotobyname getprotobynumber getprotoent getservbyname getservbyport getservent sethostent setnetent setprotoent setservent
    gmtime localtime time times
    and AUTOLOAD BEGIN CHECK cmp CORE __DATA__ default DESTROY else elseif elsif END __END__ eq for foreach ge given gt if INIT le lt ne not or UNITCHECK unless until when while x xor
  ),
);

foreach my $inc (@INC)
{

 view all matches for this distribution


Test2-Plugin-Cover

 view release on metacpan or  search on metacpan

lib/Test2/Plugin/Cover.pm  view on Meta::CPAN

my %SPECIAL_SUBS = (
    'BEGIN'     => 1,
    'CHECK'     => 1,
    'END'       => 1,
    'INIT'      => 1,
    'UNITCHECK' => 1,
);

sub files {
    my $class = shift;
    my %params = @_;

 view all matches for this distribution


Text-ASCII-Convert

 view release on metacpan or  search on metacpan

lib/Text/ASCII/Convert.pm  view on Meta::CPAN

You should have received a copy of the GNU General Public License
along with this program.  If not, see https://www.gnu.org/licenses/.

=cut

UNITCHECK {
    # build character map from __DATA__ section
    while (<DATA>) {
        chomp;
        my ($key,$value) = split /\s+/;
        my $ascii = join('', map { chr(hex($_)) } split /\+/, $value);

 view all matches for this distribution


Text-CSV_XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Text-Markdown-Discount

 view release on metacpan or  search on metacpan

lib/Text/Markdown/ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Text-Minify-XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Thread-CSP

 view release on metacpan or  search on metacpan

src/ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Thread-Csp

 view release on metacpan or  search on metacpan

src/ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Thread-GoChannel

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution



Tree-Lexicon

 view release on metacpan or  search on metacpan

t/tree-lexicon.t  view on Meta::CPAN

        'P' => [],
        'Q' => [],
        'R' => [],
        'S' => [],
        'T' => [],
        'U' => [ 'UNITCHECK' ],
        'V' => [],
        'W' => [],
        'X' => [],
        'Y' => [],
        'Z' => [],

 view all matches for this distribution


Tree-RB-XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


Type-Tiny-XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_truncate|5.003007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


UID2-Client-XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

KEY_try|5.033007||Viu
KEY_uc|5.003007||Viu
KEY_ucfirst|5.003007||Viu
KEY_umask|5.003007||Viu
KEY_undef|5.003007||Viu
KEY_UNITCHECK|5.009005||Viu
KEY_unless|5.003007||Viu
KEY_unlink|5.003007||Viu
KEY_unpack|5.003007||Viu
KEY_unshift|5.003007||Viu
KEY_untie|5.003007||Viu

 view all matches for this distribution


( run in 0.798 second using v1.01-cache-2.11-cpan-4face438c0f )