stak-native 0.10.15

Optimized primitives of native functions for Stak Scheme
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Stak Scheme primitive sets for optimized primitives of native functions.

#![no_std]

mod equal;
mod list;
mod type_check;

pub use equal::*;
pub use list::*;
pub use type_check::*;