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

Array Architects freeware
Filter: All | Freeware | Demo
 

Array Architects

< 1 2 3 4 5 > 
Added: March 12, 2010 | Visits: 973

GDS2 GDS2 is a module for quickly creating programs to read and/or write GDS2 files. Create Method new - open gds2 file usage: my $gds2File = new GDS2(-fileName => "filename.gds2"); ## to read my $gds2File2 = new GDS2(-fileName => ">filename.gds2"); ## to write fileNum - file number......



Platforms: *nix

License: Freeware Size: 10.24 KB Download (93): GDS2 Download

Added: November 15, 2010 | Visits: 779

Pieforms Pieforms project provides a simple, unified way to create, validate and process forms all with a common look and feel, with support for pluggable elements, renderers and validation rules. Huh? What does all that mean? In simple terms, Pieforms provides a library for building HTML forms. So...





Platforms: *nix

License: Freeware Download (93): Pieforms 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: August 19, 2010 | Visits: 974

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: August 19, 2010 | Visits: 1.065

Judy Judy is a C library that provides a state-of-the-art core technology that implements a sparse dynamic array. Judy arrays are declared simply with a null pointer. A Judy array consumes memory only when it is populated, yet can grow to take advantage of all available memory if desired. Judys...


Platforms: *nix

License: Freeware Size: 1024 KB Download (92): Judy Download

Added: May 04, 2010 | Visits: 1.725

Language::Basic::Variable Language::Basic::Variable is a Perl module to handle parsing and implementing BASIC variables. SYNOPSIS See Language::Basic for the overview of how the Language::Basic module works. This pod page is more technical. There are two sorts of variables: Arrays and Scalars. Each of those classes...


Platforms: *nix

License: Freeware Size: 52.22 KB Download (92): Language::Basic::Variable Download

Added: February 12, 2010 | Visits: 927

MLDBM::TinyDB MLDBM::TinyDB is a Perl module that can help you to create and manipulate structured MLDBM tied hash references. SYNOPSIS use MLDBM::TinyDB; ## or use MLDBM::TinyDB qw/db add_common/; @common = qw/created updated/; ## optional $tree = [TABLE, FIELDS_LIST, [TABLE1, FIELDS_LIST1,...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): MLDBM::TinyDB Download

Added: October 21, 2010 | Visits: 817

Array::Utils Array::Utils module contains small utils for array manipulation. SYNOPSIS use Array::Utils qw(:all); my @a = qw( a b c d ); my @b = qw( c d e f ); # symmetric difference my @diff = array_diff(@a, @b); # intersection my @isect = intersect(@a, @b); # unique union my @unique =...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (91): Array::Utils Download

Added: June 09, 2013 | Visits: 884

pyFLTK JNI++ is a set of two code generating utilities and a core C++ library that simplify programming to the Java Native Interface (JNI) with C++. The first of these utilities is used to generate C++ "proxy" classes given a Java class or interface, and is useful for "automating" Java objects from C++....


Platforms: *nix

License: Freeware Size: 1.38 MB Download (91): pyFLTK Download

Added: November 24, 2010 | Visits: 905

Perl6::Parameters Perl6::Parameters is a module with Perl 6-style prototypes with named parameters. SYNOPSIS use Perl6::Parameters; sub mysub($foo, ARRAY $bar, *%rest) { ... } DETAILS Perl6::Parameters is a Perl module which simulates Perl 6s named parameters. (When I talk about "named parameters" I...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (91): Perl6::Parameters Download

Added: November 18, 2010 | Visits: 900

Tie::Array::RestrictUpdates Tie::Array::RestrictUpdates can limit the number of times you change elements in an array. SYNOPSIS use Tie::Array::RestrictUpdates; tie @foo,"Tie::Array::RestrictUpdates",1; # Default limit is 1. # Every element from the array can only be changed once @foo = qw(A B C D E); for(0..4) {...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Tie::Array::RestrictUpdates Download

Added: August 08, 2008 | Visits: 1.232

OpenOffice.org OpenOffice.org 2,3 incorporates an array of new features and enhancements to all its core components, and protects users from newly discovered security vulnerabilities. It is a major release and all users should download it. Plus: It is only with 2.3 that users can make full use of our growing...


Platforms: Windows, *nix

License: Freeware Size: 106 MB Download (90): OpenOffice.org Download

Added: August 20, 2008 | Visits: 970

Chart ModelKit OpenOffice.org 2,3 incorporates an array of new features and enhancements to all its core components, and protects users from newly discovered security vulnerabilities. It is a major release and all users should download it. Plus: It is only with 2.3 that users can make full use of our growing...


Platforms: Windows, *nix

License: Freeware Size: 106 MB Download (90): Chart ModelKit Download

Added: May 27, 2010 | Visits: 905

Variable::Alias Variable::Alias is a Perl module created to alias any variable to any other variable. SYNOPSIS use Variable::Alias alias; my $src; my $a; our $b; my @c; our @d; alias $src => $a; alias $a => $b; alias $b => $c[0]; alias @c => @d; $src=src; # All the other variables now have the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Variable::Alias Download

Added: August 23, 2010 | Visits: 973

Getargs::Long Getargs::Long is a Perl module with named subroutine arguments, with optional type checking. SYNOPSIS use Getargs::Long; # case sensitive use Getargs::Long qw(ignorecase); # case insensitive # Simple, args mandatory my ($val, $other) = getargs(@_, qw(val other)); # Simple, args optional...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (90): Getargs::Long Download

Added: November 24, 2010 | Visits: 964

Tie::Layers SYNOPSIS ##### # Subroutines # use Tie::Layers qw(is_handle config); $yes = is_handle( $file_handle ); ($key, $old_value) = config(%options, $key); ($key, $old_value) = config(%options, $key => $new_value ); #### # Config default startup options # @old_options_list =...


Platforms: *nix

License: Freeware Size: 71.68 KB Download (90): Tie::Layers Download

Added: July 10, 2010 | Visits: 620

Perl6::Contexts Perl6::Contexts - array and hash variables turn into references to themselves when used in non-numeric scalar context or as function arguments. SYNOPSIS my @foo = ( 1 .. 20 ); my $foo = @foo; # same as: my $foo = @foo; my $foo = 0 + @foo; # unchanged - length of @foo $obj->some_method(10,...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (89): Perl6::Contexts Download

Added: September 17, 2010 | Visits: 712

ManyEars ManyEars project makes use of an array of microphones to perform sound source localization, tracking, and separation. It is designed to provide auditory capabilities to mobile robots, but it can equally be used for video conferencing or other applications. The project is based on the...


Platforms: *nix

License: Freeware Size: 440.32 KB Download (89): ManyEars Download

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: 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

< 1 2 3 4 5 >