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.431.361 Times

Perl Array software
Filter: All | Freeware | Demo
 

Perl Array

1 2 3 4 5 > 
Added: October 08, 2010 | Visits: 953

Tie::Array::PackedC Tie::Array::PackedC is a tie a Perl array to a C-style array (packed; elements of a single, simple data type). SYNOPSIS use Tie::Array::PackedC qw(packed_array packed_array_string); my $ref=packed_array(1,2,3,4); my $ref2=packed_array_string(my $s,1,2,3,4); use Tie::Array::PackedC...



Platforms: *nix

License: Freeware Size: 6.14 KB Download (88): Tie::Array::PackedC Download

Added: March 03, 2010 | Visits: 952

Tie::File Tie::File can access the lines of a disk file via a Perl array. SYNOPSIS # This file documents Tie::File version 0.96 use Tie::File; tie @array, Tie::File, filename or die ...; $array[13] = blah; # line 13 of the file is now blah print $array[42]; # display line 42 of the file $n_recs...





Platforms: *nix

License: Freeware Size: 67.58 KB Download (97): Tie::File Download

Added: January 13, 2010 | Visits: 1.133

Class::Generate Class::Generate is a Perl module that can generate Perl class hierarchies. SYNOPSIS use Class::Generate qw(class subclass delete_class); # Declare class Class_Name, with the following types of members: class Class_Name => [ s => $, # scalar a => @, # array h => %, # hash c => Class, #...


Platforms: *nix

License: Freeware Size: 53.25 KB Download (96): Class::Generate Download

Added: June 13, 2010 | Visits: 851

PDL::IO::Misc PDL::IO::Misc is a Perl module with misc IO routines for PDL. rcols() Read ASCII whitespaced cols from a file into piddles and perl arrays (also see "rgrep()"). There are two calling conventions - the old version, where a pattern can be specified after the filename/handle, and the new...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (87): PDL::IO::Misc Download

Added: August 09, 2010 | Visits: 848

AnyData::Format::XML AnyData::Format::XML is a Perl module for tiedhash and DBI access to XML. SYNOPSIS # access XML data via a multi-dimensional tied hash # see AnyData.pod for full details # use AnyData; my $table = adTie( XML, $file, $mode, $flags ); OR # convert data to and from XML # see AnyData.pod...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (94): AnyData::Format::XML Download

Added: January 03, 2010 | Visits: 839

Text::VimColor Text::VimColor is a syntax color text in HTML or XML using Vim. SYNOPSIS use Text::VimColor; my $syntax = Text::VimColor->new( file => $0, filetype => perl, ); print $syntax->html; print $syntax->xml; This module tries to markup text files according to their syntax. It can be used to...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (93): Text::VimColor Download

Added: January 18, 2010 | Visits: 817

Gtk::CListModel Gtk::CListModel is a simple data model with Gtk::Clist views. SINOPSYS my $model = tie @data, Gtk::CListModel, titles => ["Fruit", "Price", "Quantity"]; # all data manipulation is done on @data now push @data, ["Oranges", 5, 16]; # Create a view (a Gtk::Clist widget) to represent the data...


Platforms: *nix

License: Freeware Size: 440.32 KB Download (88): Gtk::CListModel Download

Added: August 04, 2013 | Visits: 408

Gtk2::Ex::Simple::Tree for Linux Gtk2 has a powerful, but complex MVC (Model, View, Controller) system used to implement list and tree widgets. The Gtk2::Ex::Simple::Tree Perl module automates the complex setup work and allows you to treat the tree model as a more natural list of hash refs. After creating a new...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (36): Gtk2::Ex::Simple::Tree for Linux Download

Added: November 13, 2010 | Visits: 593

Curses::Simp Curses::Simp is a simple curses wrapper for easy application development. SYNOPSIS use Curses::Simp; my $simp = Curses::Simp->new(text => [1337, nachoz, w/, cheese x 7]); my $key = ; while($key ne x) { # wait for x to eXit $key = $simp->GetKey(-1); # get a blocking keypress...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (87): Curses::Simp Download

Added: May 08, 2010 | Visits: 770

Tie::Tk::Listbox Tie::Tk::Listbox provides allows to access Tk::Listbox and similar widgets as arrays. The Tie::Tk::Listbox module allows you to tie the contents of a Tk::Listbox widget to an ordinary Perl array for easy modification. Additionally, you may tie a Tk::Scrolled widget or any other widget that...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): Tie::Tk::Listbox Download

Added: October 26, 2010 | Visits: 761

Variable::Strongly::Typed::Array Variable::Strongly::Typed::Array is a Perl module for strongly typed array. SYNOPSIS This class is utilized by Variable::Strongly::Typed - you dont access this directly my @array_of_ints :TYPE(int); # Each slot must contain an int my @array_of_rgb :TYPE(&red_green_blue); # my enumerated...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): Variable::Strongly::Typed::Array Download

Added: May 05, 2010 | Visits: 846

Tie::FlatFile::Array Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays. This module allows the programmer to treat a flatfile database as as array of arrays. For example, lets say you have a datafile that has fixed-length records like so: Field-name Type URL ASCII...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Tie::FlatFile::Array Download

Added: April 25, 2010 | Visits: 717

Array::Iterator Array::Iterator is a simple class for iterating over Perl arrays. SYNOPSIS use Array::Iterator; # create an iterator with an array my $i = Array::Iterator->new(1 .. 100); # create an iterator with an array reference my $i = Array::Iterator->new(@array); # create an iterator with a...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (99): Array::Iterator Download

Added: August 19, 2010 | Visits: 972

List::Part List::Part is a Perl module that allows you to partition one array into several. SYNOPSIS use List::Part; ($good, $bad)=part { !/substring/ } @array; #store arrayrefs into $good and $bad (*good, *bad)=part { !/substring/ } @array; #store into @good and @bad ABSTRACT List::Part...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (92): List::Part Download

Added: November 25, 2010 | Visits: 806

Class::ArrayObjects Class::ArrayObjects is a Perl utility class for array based objects. SYNOPSIS package Some::Class; use Class::ArrayObjects define => { fields => [qw(_foo_ _bar_ BAZ)], }; or package Other::Class; use base Some::Class; use Class::ArrayObjects extend => { class => Some::Class, with...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (103): Class::ArrayObjects Download

Added: July 21, 2010 | Visits: 864

Hub::Perl::Language Hub::Perl::Language is a Perl module that contains a lot of methods. PUBLIC METHODS sizeof Integer size of hashes, arrays, and scalars Usage: sizeof %hash Usage: sizeof @array Usage: sizeof $scalar_ref Usage: sizeof $scalar Usage: sizeof %more, @than, $one Sizes are computed as...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (87): Hub::Perl::Language Download

Added: September 05, 2013 | Visits: 389

Tie::Array::QueueExpire for Linux Tie::Array::QueueExpire is a Perl module that requires Time::HiRes, TokyoCabinet (database and perl module.) The insertion is ms unique ( 0.001 seconds ). The normal ARRAY function present are push pop shift exits scalar clear unshift (but put data 1 second before the first entry) The...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (36): Tie::Array::QueueExpire for Linux Download

Released: September 08, 2017  |  Added: September 12, 2017 | Visits: 26.702

DzSoft Perl Editor DzSoft Perl Editor is a tool for writing, editing, and debugging Perl/CGI scripts. It has a comfortable and intuitive interface both for beginners and advanced programmers. DzSoft Perl Editor is deceptively simple, but it is really a very powerful tool. Features Code Explorer, very comfortable...


Platforms: Windows

License: Shareware Cost: $49.00 USD Size: 2.61 MB Download (1097): DzSoft Perl Editor Download

Added: May 12, 2006 | Visits: 6.394

Perl Express A free integrated development environment (IDE) for Perl with multiple tools for writing and debugging your scripts. It features multiple CGI scripts for editing, running, and debugging; multiple input files; full server simulation; queries created from an internal Web browser or query editor;...


Platforms: Windows

License: Freeware Size: 3.29 MB Download (910): Perl Express Download

Added: March 24, 2006 | Visits: 4.154

SannySoft Perl Editor SannySoft Perl Editor is a fully integrated developer environment. It has a various number of features which makes writing, editing and debugging Perl scripts easier. SannySoft Perl Editor is simple, but at the same time it is very great tool. SannySoft Perl Editor will save much of your...


Platforms: Windows

License: Shareware Cost: $44.95 USD Size: 2.18 MB Download (1405): SannySoft Perl Editor Download

1 2 3 4 5 >