-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathIndex.yml
More file actions
44 lines (33 loc) · 830 Bytes
/
Index.yml
File metadata and controls
44 lines (33 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
name:
pqueue
version:
2.1.0
title:
PQueue
summary:
Queue of Prioritized Elements
description:
A priority queue is like a standard queue, except that each inserted elements
is given a certain priority, based on the result of the comparison block given
at instantiation time. Retrieving an element from the queue will always return
the one with the highest priority.
resources:
home: http://rubyworks.github.com/pqueue
code: http://github.com/rubyworks/pqueue
bugs: http://github.com/rubyworks/pqueue/issues
repositories:
upstream: git://github.com/rubyworks/pqueue.git
authors:
- Trans <transfire@gmail.com>
- K. Kodama
- Ronald Butler
- Olivier Renaud
- Rick Bradley
organization:
Rubyworks
created:
2001-03-10
copyrights:
- (c) 2009 Rubyworks (BSD-2)
- (c) 2001 K. Kodama