File: control

package info (click to toggle)
libclass-multimethods-perl 1.701-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 244 kB
  • sloc: perl: 1,517; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,403 bytes parent folder | download | duplicates (2)
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
Source: libclass-multimethods-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libclass-multimethods-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-multimethods-perl.git
Homepage: https://metacpan.org/release/Class-Multimethods

Package: libclass-multimethods-perl
Architecture: all
Depends: ${misc: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. Class::Multimethods to the rescue!
 .
 Generally speaking, multiple dispatch is needed whenever two or more objects
 belonging to different class hierarchies are going to interact, and there are
 different things that need to be done depending on the combination of the
 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.