pub trait VisitExt<I: Interner>: TypeVisitable<I> {
    fn has_free_vars(&self, interner: I) -> bool { ... }
}
Expand description

TypeVisitor extensions.

Provided Methods

Check whether there are free (non-bound) variables.

Implementors