Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.201.730 Times

Subroutine freeware
Filter: All | Freeware | Demo
 

Subroutine

< 1 2 3 4 5 > 
Added: May 01, 2010 | Visits: 911

Text::Reform Text::Reform is a Perl module for manual text wrapping and reformatting. SYNOPSIS use Text::Reform; print form $template, $data, $to, $fill, $it, $with; use Text::Reform qw( tag ); print tag B, $enboldened_text; The form sub The form() subroutine may be exported from the module....



Platforms: *nix

License: Freeware Size: 20.48 KB Download (102): Text::Reform Download

Added: April 27, 2010 | Visits: 1.252

Class::Contract Class::Contract - Design-by-Contract OO in Perl. SYNOPSIS package ClassName use Class::Contract; contract { inherits BaseClass; invar { ... }; attr data1; attr data2 => HASH; class attr shared => SCALAR; ctor new; method methodname; pre { ... }; failmsg Error message; post...





Platforms: *nix

License: Freeware Size: 26.62 KB Download (114): Class::Contract Download

Added: March 07, 2010 | Visits: 881

Perl6::Export::Attrs Perl6::Export::Attrs - the Perl 6 is export(...) trait as a Perl 5 attribute. SYNOPSIS package Some::Module; use Perl6::Export::Attrs; # Export &foo by default, when explicitly requested, # or when the :ALL export set is requested... sub foo :Export(:DEFAULT) { print "phooo!"; } #...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Perl6::Export::Attrs Download

Added: October 20, 2010 | Visits: 820

Contextual::Return Contextual::Return is a Perl module to create context-senstive return values. SYNOPSIS use Contextual::Return; use Carp; sub foo { return SCALAR { thirty-twelve } BOOL { 1 } NUM { 7*6 } STR { forty-two } LIST { 1,2,3 } HASHREF { {name => foo, value => 99} } ARRAYREF { [3,2,1] }...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Contextual::Return Download

Added: February 14, 2010 | Visits: 1.156

IO::Interactive IO::Interactive is a Perl module with utilities for interactive I/O. SYNOPSIS use IO::Interactive qw(is_interactive interactive busy); if ( is_interactive() ) { print "Running interactivelyn"; } # or... print {interactive} "Running interactivelyn"; $fh = busy {...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): IO::Interactive Download

Added: April 11, 2010 | Visits: 862

IO::Busy IO::Busy is a Perl module to intercept terminal input while something else is happening. SYNOPSIS use IO::Busy; my $fh = busy { non_interactive_stuff(); }; This module exports a single subroutine, named busy. That subroutine takes a single argument, which must be a block of code. busy...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): IO::Busy Download

Added: October 08, 2010 | Visits: 1.676

IO::InSitu IO::InSitu is a Perl module to avoid clobbering files opened for both input and output. SYNOPSIS use IO::InSitu; my ($in, $out) = open_rw($infile_name, $outfile_name); for my $line (<$in>) { $line =~ s/foo/bar/g; print {$out} $line; } When users want to do in-situ processing on a...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): IO::InSitu Download

Added: November 13, 2010 | Visits: 919

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

Added: November 14, 2010 | Visits: 1.230

Simulation::Sensitivity Simulation::Sensitivity is a general-purpose sensitivity analysis tool for user-supplied calculations and parameters. SYNOPSIS use Simulation::Sensitivity; $sim = Simulation::Sensitiviy->new( calculation => sub { my $p = shift; return $p->{alpha} + $p->{beta} } parameters => { alpha =>...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (130): Simulation::Sensitivity Download

Added: February 04, 2010 | Visits: 1.065

Devel::RingBuffer Devel::RingBuffer is a Perl module with shared memory ring buffers for Perl scripts diagnosis/debug. SYNOPSIS # # create ringbuffer # use Devel::RingBuffer; use Devel::RingBuffer::TieInt; my $ringbuf = Devel::RingBuffer->new( File => somefile.trace, Rings => 20, Slots => 20,...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (103): Devel::RingBuffer Download

Added: September 15, 2010 | Visits: 818

Devel::DProf Devel::DProf is a Perl code profiler. SYNOPSIS perl5 -d:DProf test.pl The Devel::DProf package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (93): Devel::DProf Download

Released: December 22, 2012  |  Added: December 22, 2012 | Visits: 2.278

sqlpp sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also #perldef for calling arbitrary perl code. SYNOPSIS...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): sqlpp Download

Added: January 08, 2010 | Visits: 1.124

Async::Group Async::Group is a Perl class to deal with simultaneous asynchronous calls. SYNOPSIS use Async::Group ; use strict ; sub sub1 { print "Dummy subroutine n"; my $dummy = shift ; my $cb = shift ; &$cb(1); } sub allDone { print "All done, result is ", shift ,"n" ; } my $a =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Async::Group Download

Added: May 14, 2010 | Visits: 765

Text::WagnerFischer Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance. SYNOPSIS use Text::WagnerFischer qw(distance); print distance("foo","four");# prints "2" print distance([0,1,2],"foo","four");# prints "3" my @words=("four","foo","bar"); my...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (103): Text::WagnerFischer Download

Added: September 06, 2010 | Visits: 1.612

CAD::Drawing::IO::Tk CAD::Drawing::IO::Tk is a Perl module with GUI I/O methods for CAD::Drawing. This module is considered extremely pre-ALPHA and its use is probably deprecated by the time you read this. Methods There is no constructor for this class, its methods are inherited via CAD::Drawing::IO Thoughts...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (100): CAD::Drawing::IO::Tk Download

Added: August 15, 2010 | Visits: 1.120

MIME::WordDecoder MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation. SYNOPSIS See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works. use MIME::WordDecoder; ### Get the default word-decoder (used by unmime()): $wd = default...


Platforms: *nix

License: Freeware Size: 378.88 KB Download (97): MIME::WordDecoder Download

Added: March 18, 2010 | Visits: 1.452

File::Find File::Find is a Perl module to traverse a directory tree. SYNOPSIS use File::Find; find(&wanted, @directories_to_search); sub wanted { ... } use File::Find; finddepth(&wanted, @directories_to_search); sub wanted { ... } use File::Find; find({ wanted => &process, follow => 1 }, .);...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): File::Find Download

Added: October 17, 2010 | Visits: 2.108

Set::Infinite::Basic Set::Infinite::Basic is a Perl module with sets of intervals. SYNOPSIS use Set::Infinite::Basic; $set = Set::Infinite::Basic->new(1,2); # [1..2] print $set->union(5,6); # [1..2],[5..6] Set::Infinite::Basic is a Set Theory module for infinite sets. It works on reals, integers, and...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (91): Set::Infinite::Basic Download

Added: July 08, 2010 | Visits: 847

Benchmark Benchmark is a Perl module with benchmark running times of Perl code. SYNOPSIS use Benchmark qw(:all) ; timethis ($count, "code"); # Use Perl code in strings... timethese($count, { Name1 => ...code1..., Name2 => ...code2..., }); # ... or use subroutine references. timethese($count,...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (102): Benchmark Download

Added: February 11, 2010 | Visits: 941

Include Include is a Perl module that allow you to use #defines from C header files. SYNOPSIS use Include qw(-I /some/path/of/mine); use Include q< sys/types.h >; use Include q< sys/types.h > "/[A-Z]/"; The Include module implements a method of using #define constants from C header files. It does...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (88): Include Download

< 1 2 3 4 5 >