ukanren 0.0.5

Rust implementation of µKanren, a featherweight relational programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! An implementation of the _µKanren_ relational programming system in Rust.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub use crate::goal::*;
pub use crate::state::*;
pub use crate::value::*;

mod goal;
mod state;
mod value;