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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/// Edge between two functions.
///
/// # `Logic` vs `Contains`
///
/// The difference between the `Logic` variant` and the `Contains` variant
/// is whether the non-existence of a predecessor implies the non-existence
/// of the successor.
///
/// For example, a database server may be referenced by an application
/// server, so there is a `Logic`al ordering between the two, but the
/// application server *may* exist even if the database server doesn't.
///
/// However, a file on the application server cannot physically exist if the
/// application server does not exist -- i.e. the application server `Contains`
/// the file.
///
/// This semantic difference can be used for:
///
/// * Cleaning up outermost resources, and assuming the inner resources are also
/// cleaned up.
/// * Rendering.