Expand description
Random access inspection of the results of a dataflow analysis.
Structs§
- Cursor
Position 🔒 - Results
Cursor  - Allows random access inspection of the results of a dataflow analysis. Use this when you want
to inspect domain values only in certain locations; use 
ResultsVisitorif you want to inspect domain values in many or all locations. 
Enums§
- CowMut 🔒
 - Some 
ResultsCursors want to own anAnalysis, and some want to borrow anAnalysis, either mutable or immutably. This type allows all of the above. It’s similar toCow, butCowdoesn’t allow mutable borrowing.