We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rustc_mir_dataflow::framework::lattice::FlatSet
1 parent 7425fb2 commit f8b16c5Copy full SHA for f8b16c5
compiler/rustc_mir_dataflow/src/framework/lattice.rs
@@ -199,14 +199,16 @@ impl<T: JoinSemiLattice> MeetSemiLattice for Dual<T> {
199
}
200
201
/// Extends a type `T` with top and bottom elements to make it a partially ordered set in which no
202
-/// value of `T` is comparable with any other. A flat set has the following [Hasse diagram]:
+/// value of `T` is comparable with any other.
203
+///
204
+/// A flat set has the following [Hasse diagram]:
205
///
206
/// ```text
-/// top
-/// / / \ \
207
+/// top
208
+/// / ... / / \ \ ... \
209
/// all possible values of `T`
-/// \ \ / /
-/// bottom
210
+/// \ ... \ \ / / ... /
211
+/// bottom
212
/// ```
213
214
/// [Hasse diagram]: https://en.wikipedia.org/wiki/Hasse_diagram
0 commit comments