Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第2,5612,570项(搜索用时0.004秒)
devel/Iterator-IO-0.02 (Score: 0.032514982)
Filesystem and stream iterators
This module provides filesystem and stream iterator functions. See the Iterator module for more information about how to use iterators.
devel/Iterator-Misc-0.03 (Score: 0.032514982)
Miscellaneous iterator functions
This module contains miscellaneous iterator utility functions that I think aren't as broadly useful as the ones in Iterator::Util. They are here to keep the size of Iterator::Util down. For more information on iterators and how to use them, see the Iterator module documentation.
devel/Iterator-Util-0.02 (Score: 0.032514982)
Essential utilities for the Iterator class
This module implements many useful functions for creating and manipulating iterator objects. An "iterator" is an object, represented as a code block that generates the "next value" of a sequence, and generally implemented as a closure. For further information, including a tutorial on using iterator objects, see the Iterator documentation.
devel/Iterator-0.03 (Score: 0.032514982)
General-purpose iterator class
This module is meant to be the definitive implementation of iterators, as popularized by Mark Jason Dominus's lectures and recent book (Higher Order Perl, Morgan Kauffman, 2005). An "iterator" is an object, represented as a code block that generates the "next value" of a sequence, and generally implemented as a closure. When you need a value to operate on, you pull it from the iterator. If it depends on other iterators, it pulls values from them when it needs to. Iterators can be chained together (see Iterator::Util for functions that help you do just that), queuing up work to be done but not actually doing it until a value is needed at the front end of the chain. At that time, one data value is pulled through the chain. Iterator.pm provides a class that simplifies creation and use of these iterator objects. Other Iterator:: modules (see "SEE ALSO") provide many general-purpose and special-purpose iterator functions.
devel/JIRA-REST-0.012 (Score: 0.032514982)
Extended interface to JIRA REST API
JIRA is a proprietary bug tracking system from Atlassian (http://www.atlassian.com/software/jira/). This module implements an Object Oriented wrapper around JIRA's REST API. Moreover, it implements some other methods to make it easier to do some common operations.
devel/JQuery-1.06 (Score: 0.032514982)
Interface to Jquery, a language based on JavaScript
JQuery is a frontend for the jQuery language. I use JQuery to refer to the Perl part or the package, and jQuery to reference the javascript part or the package. A quote from http://jquery.com: jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages.
devel/tla-1.3.5 (Score: 0.032514982)
Original arch source control management CLI written in C
Arch is a really nifty revision control system. It's "whole-tree changeset based" which means, roughly, that it can handle (with atomic commits) file and directory adds, deletes, and renames cleanly, and that it does branching simply and easily. Arch is also "distributed" which means, for example that you can make arch branches of your own from remote projects, even if you do not have write access to the revision control archives for those projects.
devel/JSON-Hyper-0.011 (Score: 0.032514982)
Extract links from JSON objects
Extract links from JSON via a schema
devel/JSON-Path-0.205 (Score: 0.032514982)
Search nested hashref/arrayref structures using JSONPath
search nested hashref/arrayref structures using JSONPath
devel/JSON-Pointer-0.07 (Score: 0.032514982)
Perl extension of JSON Pointer (RFC6901)
This library is implemented JSON Pointer (http://tools.ietf.org/html/rfc6901) and some useful operator from JSON Patch (http://tools.ietf.org/html/rfc6902). JSON Pointer is available to identify a specified value in JSON document, and it is simillar to XPath. Please read the both of specifications for details.