scopegraphs-lib 0.1.3

A port of [scopegraphs](https://pl.ewi.tudelft.nl/research/projects/scope-graphs/) to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This module contains some generic containers for data used by the resolution algorithm.
//! Using these interfaces, the resolution algorithms can deal with custom behavior introduced
//! by [`Completeness`] implementations.

mod scope;
pub use scope::*;

mod path;
pub use path::*;

mod env;
pub use env::*;