1Dpkg::Deps::AND(3perl) libdpkg-perl Dpkg::Deps::AND(3perl)
2
3
4
6 Dpkg::Deps::AND - list of AND dependencies
7
9 This object represents a list of dependencies that must be met at the
10 same time. It inherits from Dpkg::Deps::Multiple.
11
13 $dep->output([$fh])
14 The output method uses ", " to join the list of sub-dependencies.
15
16 $dep->implies($other_dep)
17 Returns 1 when $dep implies $other_dep. Returns 0 when $dep implies
18 NOT($other_dep). Returns undef when there's no implication. $dep
19 and $other_dep do not need to be of the same type.
20
21 $dep->get_evaluation($facts)
22 Evaluates the dependency given a list of installed packages and a
23 list of virtual packages provided. These lists are part of the
24 Dpkg::Deps::KnownFacts object given as parameters.
25
26 Returns 1 when it's true, 0 when it's false, undef when some
27 information is lacking to conclude.
28
29 $dep->simplify_deps($facts, @assumed_deps)
30 Simplifies the dependency as much as possible given the list of
31 facts (see object Dpkg::Deps::KnownFacts) and a list of other
32 dependencies that are known to be true.
33
35 Version 1.00 (dpkg 1.15.6)
36 Mark the module as public.
37
38
39
401.19.7 2020-07-27 Dpkg::Deps::AND(3perl)