Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第2,2912,300项(搜索用时0.003秒)
devel/Exporter-Easy-0.18 (Score: 0.032514982)
Takes the drudgery out of Exporting symbols
Exporter::Easy makes using Exporter easy. In it's simplest case it allows you to drop the boilerplate code that comes with using Exporter.
devel/File-Cat-1.2 (Score: 0.032514982)
Perl implementation of cat
File::Cat is a module of adventure, danger, and low cunning. With it, you will explore some of the most inane programs ever seen by mortals. No computer should be without one!
devel/Exporter-Lite-0.08 (Score: 0.032514982)
Lightweight exporting of functions and variables
This is an alternative to Exporter intended to provide a lightweight subset of the most commonly-used functionality. It supports import(), @EXPORT and @EXPORT_OK and not a whole lot else.
devel/Exporter-Tiny-0.042 (Score: 0.032514982)
Exporter with features of Sub::Exporter but only core dependencies
Exporter::Tiny supports many of Sub::Exporter's external-facing features including renaming imported functions with the -as, -prefix and -suffix options; explicit destinations with the into option; and alternative installers with the installler option. But it's written in only about 40% as many lines of code and with zero non-core dependencies. Its internal-facing interface is closer to Exporter.pm, with configuration done through the @EXPORT, @EXPORT_OK and %EXPORT_TAGS package variables. Exporter::Tiny performs most of its internal duties (including resolution of tag names to sub names, resolution of sub names to coderefs, and installation of coderefs into the target package) as method calls, which means they can be overridden to provide interesting behaviour.
devel/jna-4.1.0 (Score: 0.032514982)
Java access to native shared libraries
JNA provides Java programs easy access to native shared libraries without writing anything but Java code - no JNI or native code is required. This functionality is comparable to Windows' Platform/Invoke and Python's ctypes. Access is dynamic at runtime without code generation. JNA allows you to call directly into native functions using natural Java method invocation. The Java call looks just like it does in native code. Most calls require no special handling or configuration; no boilerplate or generated code is required.
devel/File-Copy-Recursive-0.38 (Score: 0.032514982)
Perl extension for recursively copying files and directories
This module copies and moves directories recursively (or single files, well... singley) to an optional depth and attempts to preserve each file or directory's mode.
devel/Heap-0.80 (Score: 0.032514982)
Perl extensions for keeping data partially sorted
The Heap collection of modules provide routines that manage a heap of elements. A heap is a partially sorted structure that is always able to easily extract the smallest of the elements in the structure (or the largest if a reversed compare routine is provided).
devel/File-CountLines-0.0.3 (Score: 0.032514982)
Efficiently count the number of line breaks in a file
Perlfaq5 answers the question on how to count the number of lines in a file. This module is a convenient wrapper around that method, with additional options.
devel/ExtUtils-CBuilder-0.280224 (Score: 0.032514982)
Compile and link C code for Perl modules
This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the Module::Build project, but may be useful for other purposes as well. However, it is not intended as a general cross-platform interface to all your C building needs. That would have been a much more ambitious goal!
devel/ExtUtils-CChecker-0.10 (Score: 0.032514982)
Configure-time utilities for using C headers, libraries, OS features
Often Perl modules are written to wrap functionality found in existing C headers, libraries, or to use OS-specific features. It is useful in the Build.PL or Makefile.PL file to check for the existance of these requirements before attempting to actually build the module. Objects in this class provide an extension around ExtUtils::CBuilder to simplify the creation of a .c file, compiling, linking and running it, to test if a certain feature is present. It may also be necessary to search for the correct library to link against, or for the right include directories to find header files in. This class also provides assistance here.