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

Iterator freeware
Filter: All | Freeware | Demo
 

Iterator

< 1 2 3 4 5 > 
Added: January 26, 2010 | Visits: 699

SOJO SOJO is a Java framework that converts JavaBeans (complex Java-Object graphs) to a simplified representation, so that handling access to JavaBeans properties is easy and uniform. SOJO framework is meant to compliment POJOs in cases where object orientation is not supported or is not the best...



Platforms: *nix

License: Freeware Size: 2.2 MB Download (89): SOJO Download

Added: April 07, 2010 | Visits: 805

SPOPS::Iterator SPOPS::Iterator is a class to cycle through results and return SPOPS objects. SYNOPSIS my $iter = $spops_class->fetch_iterator({ where => last_name like ?, value => [ smi% ] }); while ( $iter->has_next ) { my $object = $iter->get_next; print "Object ID: ", $object->id, " at position: ",...





Platforms: *nix

License: Freeware Size: 286.72 KB Download (88): SPOPS::Iterator Download

Added: September 22, 2010 | Visits: 727

Iterator::Misc Iterator::Misc Perl module package contains miscellaneous iterator functions. SYNOPSIS use Iterator::Misc; # Permute the elements of a list: $iter = ipermute (@items); # Select only every nth value of an iterator $iter = inth ($n, $another_iterator); # Randomly select iterator values...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (88): Iterator::Misc Download

Added: March 05, 2010 | Visits: 759

Iterator::IO Iterator::IO is a Perl module with filesystem and stream iterators. SYNOPSIS use Iterator::IO; # Return the names of files in a directory (except . and ..) $iter = idir_listing ($path); # Return all the files in a directory tree, one at a time. # Like File::Find, in slow motion. $iter...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): Iterator::IO Download

Added: June 11, 2010 | Visits: 1.079

DateTime::Event::Cron DateTime::Event::Cron is a DateTime extension for generating recurrence sets from crontab lines and files. SYNOPSIS use DateTime::Event::Cron; # DateTime::Set construction from crontab line $crontab = */3 15 1-10 3,4,5 */2; $set = DateTime::Event::Cron->from_cron($crontab); $iter =...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): DateTime::Event::Cron Download

Added: May 09, 2010 | Visits: 626

XML::NodeFilter XML::NodeFilter is a generic XML::NodeFilter Class. SYNOPSIS use XML::NodeFilter; my $filter = XML::NodeFilter->new(); $your_iterator->set_filter( $filter ); "Filters are objects that know how to "filter out" nodes. If a NodeIterator or a TreeWalker is given a NodeFilter, it applies the...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): XML::NodeFilter Download

Added: May 10, 2013 | Visits: 465

Iterating through large file-like objects This function provides a simple iterator for the lines of a file-like object. (It also provides a flag for removing/retaining trailing newlines.) I ran into the problem a number of times that I wanted to read-in a very large file-like object (say a GB or two) line by line. This is a problem for...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (63): Iterating through large file-like objects Download

Added: May 10, 2013 | Visits: 418

Fileinput as a generator This script provides a class called LineIterator that iterates over every line in a list of files, performing the basic functionality as fileinput module in the standard library (which mimics Perl's operator). Basically acts as a simple and methodical way to iterate over every line in a list of...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (61): Fileinput as a generator Download

Added: May 10, 2013 | Visits: 491

tvmet Tiny Vector and Matrix template library uses Meta Templates (MT) and Expression Templates (ET) to evaluate results at compile time -- which makes it fast for low order (tiny) systems."Tiny" is a subjective term, but typically means vectors and matrices of size ten (10) or less.Features: - STL...


Platforms: Windows, Mac, *nix, C/C++, BSD Solaris

License: Freeware Download (61): tvmet Download

Added: May 10, 2013 | Visits: 707

Call a function/method X times per second This simple generator function is used to call a function X times per second.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (57): Call a function/method X times per second Download

Added: May 10, 2013 | Visits: 530

General purpose file iterator class This script presents a general purpose file object iterator cum file object proxy class.It provides a class that gives several iterator functions to read a text file by characters, words, lines, paragraphs or blocks. It also acts as a proxy for the wrapped file object. ts as a pOne way to do it...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (56): General purpose file iterator class Download

Added: May 10, 2013 | Visits: 298

Splitting iterators This script shows an implementation of isplit, a function that splits iterators into two equal ones, which return similar values, but are exact copies of one another.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (56): Splitting iterators Download

Added: May 10, 2013 | Visits: 462

Cross Platform Excel Parsing With Xlrd This script easily extract data from microsoft excel files using this wrapper class for xlrd. The class allows you to create a generator which returns excel data one row at a time as either a list or dictionary. This script is very useful for easily pulling in a variety of excel files without...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (55): Cross Platform Excel Parsing With Xlrd Download

Added: May 10, 2013 | Visits: 358

Directory Iterator This script is an iterator that can be used to walk through directories.This class is intended to provide an iterator version of the os.listdir function. The interesting property of the iterator is that you can control if you want a deep iteration of directories with the 'deep' member.After...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (54): Directory Iterator Download

Added: May 10, 2013 | Visits: 356

Picking random items from an iterator This script allows you to choose a random object from an iterated list. Each item has an equal chance of being picked. The iterator is processed only once, and only the selected items are stored, making this function memory efficid only thbr />


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (54): Picking random items from an iterator Download

Added: May 10, 2013 | Visits: 320

List iterator with advance() and regress() The basic iterator for a list doesn't allow one to skip forward (except with "continue"), or backward (at all), nor does it behave well if the list is modified while it is being traversed. This script is NOT the be-all and end-all of improved iterators, but it gives a few ideas of how a better...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): List iterator with advance() and regress() Download

Added: May 10, 2013 | Visits: 419

Merging two sorted iterators Merging two sorted iterators script provides a mergeiter() function that can merge two iterators into a single iterator. It uses generators, and guarantees constant memory use.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Merging two sorted iterators Download

Added: May 10, 2013 | Visits: 531

Relational Join Algorithms This script implements the three standard relational join algorithms: nested loops join, hash join, and merge join, using the iterator algebra support in Python.This script also presents code that can be used for inner join, left outer join, full outer join, and semijoins. The nested loops join...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Relational Join Algorithms Download

Added: May 10, 2013 | Visits: 315

Group iterator into n-tuples with None padding This script groups the elements returned by an iterator into n-tuples. The final tuple may be padded with Nones.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 259

Permutations using generators This script defines permIter() function that takes a sequence and returns an iterator that goes through all possible permutations of that sequence.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Permutations using generators Download

< 1 2 3 4 5 >