Ports Search

Results 2,5412,550 of 5,623 for /devel/.(0.003 seconds)
devel/Inline-CPP-0.74 (Score: 0.032514982)
Write Perl subroutines and classes in C++
The Inline::CPP module allows you to put C++ source code directly "inline" in a Perl script or module. You code classes or functions in C++, and you can use them as if they were written in Perl.
devel/Inline-Filters-0.17 (Score: 0.032514982)
Common source code filters for Inline Modules
Inline::Filters provides common source code filters to Inline Language Modules.
devel/List-Permutor-0.022 (Score: 0.032514982)
Allow you to process all possible permutations of a list
The List::Permutor module is simple module that currently allows you to process all possible permutations of a list
devel/Inline-Java-0.540 (Score: 0.032514982)
Write Perl subroutines and classes in Java
The Inline::Java module allows you to put Java source code directly "inline" in a Perl script or module. A Java compiler is launched and the Java code is compiled. Then Perl asks the Java classes what public methods have been defined. These classes and methods are available to the Perl program as if they had been written in Perl. The process of interrogating the Java classes for public methods occurs the first time you run your Java code. The namespace is cached, and subsequent calls use the cached version.
devel/List-Rotation-Cycle-1.009 (Score: 0.032514982)
Cycle through a list of values
Use List::Rotation::Cycle to loop through a list of values. Once you get to the end of the list, you go back to the beginning. List::Rotation::Cycle is implemented as a Singleton Pattern. You always just get 1 (the very same) Cycle object even if you use the new method several times. This is done by using Memoize on the new method. It returns the same object for every use of new that comes with the same List of parameters.
devel/List-Uniq-0.20 (Score: 0.032514982)
Extract the unique elements of a list
List::Uniq extracts the unique elements of a list. This is a commonly re-written (or at least re-looked-up) idiom in Perl programs.
devel/List-UtilsBy-0.10 (Score: 0.032514982)
Perl extension for higher-order list utility functions
This module provides a number of list utility functions, all of which take an initial code block to control their behaviour. They are variations on similar core perl or List::Util functions of similar names, but which use the block to control their behaviour. For example, the core Perl function sort takes a list of values and returns them, sorted into order by their string value. The sort_by function sorts them according to the string value returned by the extra function, when given each value.
devel/pit-0.1.0 (Score: 0.032514982)
Command-line project manager that integrates with Git
Pit is a command-line project manager that integrates with Git. Basic Pit entities are projects, tasks, and notes. One project can have multiple tasks, and a task can have multiple notes. Each entity has a number of attributes. For example, project has name and status, task has name, status, priority, date, and time, and within note there is message body. All attributes except name and message body are optional and can be omitted. The attributes have no semantic meaning, and do not have a pre-defined set of values. For example, depending on the particular need, the time attribute could be used as projected time in weeks, hours spent on the task, or days left to finish the task. Pit tries to maintain a notion of "current" project, task, or note. When you create new project, it automatically becomes current. If you do not specify project number when creating a task, the new task will be associated with the current project.
devel/Locale-Maketext-Fuzzy-0.11 (Score: 0.032514982)
Maketext from already interpolated strings
This module is a subclass of Locale::Maketext, with additional support for localizing messages that already contains interpolated variables. This is most useful when the messages are returned by external modules -- for example, to match dir: command not found against [_1]: command not found.
devel/Inline-Python-0.50 (Score: 0.032514982)
Write Perl Subroutines in Python
The Inline::Python module allows you to put Python source code directly "inline" in a Perl script or module. It sets up an in-process Python interpreter, runs your code, and then examines Python's symbol table for things to bind to Perl. The process of interrogating the Python interpreter for globals only occurs the first time you run your Python code. The namespace is cached, and subsequent calls use the cached version.