Ports Search

Results 12,17112,180 of 19,819 for %22HTTP Server%22.(0.009 seconds)
devel/Import-Into-1.002005 (Score: 9.2878623E-4)
Import packages into other packages
Import::Into creates a global method import::into which you can call on any package to import it into another package.
devel/List-Cycle-1.02 (Score: 9.2878623E-4)
Objects for cycling through a list of values
List::Cycle - objects for cycling through a list of values.
devel/List-Gen-0.974 (Score: 9.2878623E-4)
Functions for generating lists
List::Gen provides higher order functions, list comprehensions, generators, iterators, and other utility functions for working with lists. walk lists with any step size you want, create lazy ranges and arrays with a map like syntax that generate values on demand. there are several other hopefully useful functions, and all functions from List::Util are available.
devel/Inline-ASM-0.03 (Score: 9.2878623E-4)
Write Perl Subroutines in assembler
Inline::ASM allows you to write Perl subroutines in assembly language. Of course, many C compilers allow you to put assembly right in your C code, so this module does not provide any new functionality. It does, however, provide a feature most C compilers don't: you can mix different assembler syntaxes in the same file!
devel/Inline-C-0.76 (Score: 9.2878623E-4)
Write Perl Subroutines in C
Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use Inline with the C programming language. It also goes a bit into Perl C internals.
devel/Inline-CPP-0.74 (Score: 9.2878623E-4)
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: 9.2878623E-4)
Common source code filters for Inline Modules
Inline::Filters provides common source code filters to Inline Language Modules.
devel/Inline-Java-0.540 (Score: 9.2878623E-4)
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-Uniq-0.20 (Score: 9.2878623E-4)
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: 9.2878623E-4)
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.