pub fn strongly_connected_components(
    api: &Api,
    class: &str,
    visited: Option<HashSet<String>>
) -> HashSet<String>
Expand description

Find set of classes that only depend on each other.

Mostly useful to get “self-contained” bindings for classes of interest.

If many classes should be checked, a previous result can be passed to avoid unnecessary checks.