mini-kanren 0.4.0

miniKANREN in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Library of goals

#[macro_use]
pub mod combinators;
#[macro_use]
mod hashmap;
#[macro_use]
pub mod list;
#[macro_use]
pub mod primitive;

pub mod numbers;

use crate::core::substitution::Substitution;

pub type StatSubs = Substitution<'static>;