lib-tan-core 0.16.0

The core library
Documentation
1
2
3
4
5
6
7
8
9
use tan::context::Context;

use self::complex::setup_lib_math_complex;

pub mod complex;

pub fn import_lib_math(context: &mut Context) {
    setup_lib_math_complex(context);
}