stak-native 0.12.10

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

#![no_std]

mod arithmetic;
mod equal;
mod list;
mod type_check;

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