File: control

package info (click to toggle)
libclass-multimethods-perl 1.70-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 180 kB
  • ctags: 89
  • sloc: perl: 855; makefile: 37
file content (22 lines) | stat: -rw-r--r-- 973 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Source: libclass-multimethods-perl
Section: perl
Priority: optional
Maintainer: Jay Bonci <jaybonci@debian.org>
Build-Depends-Indep: debhelper (>= 4.1.0), perl (>= 5.6.0-16)
Standards-Version: 3.6.1.0

Package: libclass-multimethods-perl
Architecture: all
Depends: ${perl:Depends}
Description: Support multimethods and subroutine overloading in Perl
 Sometimes Perl's standard polymorphic method dispatch mechanism isn't
 sophisticated enough to cope with the complexities of finding the right
 method to handle a given situation.
 .
 Generally speaking, multiple dispatch is needed whenever two or more objects
 belonging to different class hierarchies are going to interact, and we need to
 do different things depending on the combination of actual types of those
 objects. Typical applications that need this kind of ability include graphical
 user interfaces, image processing libraries, mixed-precision numerical
 computation systems, and most types of simulations.