Linux SoftwareSearchthe array

Tag «the array»: downloads



Search results for «the array»:

Tie::Array::PackedC 0.03 by demerphq


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… 


Tie::File 0.96 by Mark Jason Dominus


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… 


POE::XS::Queue::Array 0.003 by Tony Cook


POE::XS::Queue::Array is an XS implementation of POE::Queue::Array.

This class is an implementation of the abstract POE::Queue interface. It implements a priority queue using C, with an XS interface supplied.

The current implementation could use some optimization, especially for large queues.
… 


nrsTable 0.3.3 by German Kalinec


nrsTable library is a JavaScript script that will allow a developer to create HTML tables from arrays.

The tables can be automatically sorted simply by clicking on the heading. A lot of customization can be done for the tables, such as colors, pages, captions, and more.

The following are some exam… 


XMLParser for PHP 1.0 by Monte Ohrt


XMLParser is a library that assists in parsing XML documents into generic PHP arrays. It also comes with RSSParser, an extension of XMLParser that creates simple RSS-specific array structures from RSS feeds.

Requirements:
The XMLParser requires the expat XML parsing library, which can be enable… 


Language::Basic::Variable 1.44 by Amir Karger


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 ha… 


AVL Array 1.2 by Martin Knoblauch Revuelta


AVL Array is an STL-like container for C++ that fills the gap between vector (or deque) and list, providing both fast random access and fast insertion/removal, all O(log n).

This is not a map; in an avl_array, the "keys" always range from 0 to size-1, and they automatically change on insertion or… 


web.template 0.9.1 RC2 by Marcin Staniszczak


web.template is a template framework for PHP 5 that uses an XML-based language.

It allows you to create classes with getters that are made accessible to the framework with an addVarClass method.

web.template also supports modifiers, tags, and resource drivers for template or cache storage.

… 


Arri 0.2a1 by Adam Gleave


Arri is an array API - more commonly known as a buffer API. Arri provides an interface to create, write, copy, duplicate, delete, append and free awways.

It does more than that, though. Arri contains a string API, to handle character strings, an IO API, to handle IO, and a UNIX sockets, to handle..… 


RDF::Simple::Parser 0.3 by Jo Walsh


RDF::Simple::Parser is a simple RDF/XML parser that reads a string containing RDF in XML.

SYNOPSIS

my $uri = 'http://www.zooleika.org.uk/bio/foaf.rdf';
my $rdf = LWP::Simple::get($uri);

my $parser = RDF::Simple::Parser->new(base => $uri)
my @triples = $parser->parse_rdf($… 


Judy 1.0.1 by Douglas L. Baskins


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.

Judy's ke… 


Term::Query 2.0 by Alan K. Stebbens


Term::Query is a table-driven query routine.

SYNOPSIS

use Term::Query
qw( query query_table query_table_set_defaults query_table_process );
$result = query $prompt, $flags, [ $optional_args ];
$ok = query_table @array;
query_table_set_defaults @array;
$ok = query_table_process @array, &fl… 


Gtk::CListModel 0.7009 by Molaro Paolo


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… 


jsaes 0.1 by B. Poettering


jsaes is a compact javascript implementation of the AES block cipher. Key lengths of 128, 192 and 256 bits are supported.

Example:

The following code example enciphers the plaintext block '00 11 22 .. EE FF' with the 256 bit key '00 01 02 .. 1E 1F'.

AES_Init();

var block = new Array(16… 


Array Designer 4.11 by PREMIER Biosoft International


Array Designer project can help design thousands of efficient, highly specific oligos to make microarrays for SNP genotyping and expression studies with the click of a button.

For investigating gene control elements in the post-sequencing era, the software designs tiling arrays for interrogating… 


tpl 1.0 by Troy Hanson


Tpl is a binary data interchange format and C API.

C programs can use tpl to store or load serialized images of structured C data. The data is stored in its native binary format. The data can consist of the basic C types, binary buffers and strings, and aggregations and arrays. The serialized ima… 


Data::PropertyList 1998.1217 by Evolution Online Systems, Inc.


Data::PropertyList is a Perl module that can convert arbitrary objects to/from strings.

SYNOPSIS

use Data::PropertyList qw(astext fromtext);

$hash_ref = { 'items' => [ 7 .. 11 ], 'key' => 'value' };
$string = astext($hash_ref);
# ...
$hash_ref = fromtext($string);
print $h… 


Math::Bezier::Convert 0.02 by Yasuhiro Sasama


Math::Bezier::Convert is a Perl module to convert cubic and quadratic bezier each other.

SYNOPSIS

use Math::Bezier::Convert;

@new_cubic = divide_cubic($cx1, $cy1, $cx2, $cy2, $cx3, $cy3, $cx4, $cy4, $t);
@new_quad = divide_quadratic($cx1, $cy1, $cx2, $cy2, $cx3, $cy3, $t);
@quad… 


XML::Simple::DTDReader 0.04 by Alex Vandiver


XML::Simple::DTDReader is a simple XML file reading based on their DTDs.

SYNOPSIS

use XML::Simple::DTDReader;

my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;

my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");

… 


Convert::UU 0.52 by Andreas Koenig


Convert::UU is a Perl module for uuencode and uudecode.

SYNOPSIS

use Convert::UU qw(uudecode uuencode);
$encoded_string = uuencode($string,[$filename],[$mode]);
($string,$filename,$mode) = uudecode($string);
$string = uudecode($string); # in scalar context

uuencode() takes as the… 



Related:

    search


Featured Software

jEdit 4.3 pre8
jEdit is an Open Source text editor written in Java

Opera 9.02
Surf the Internet in a safer, faster, and easier way with Opera browser

GNU Aspell 0.60.4
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell



Top tags