1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use crate::utils;

pub fn add(base: u16, numb1: &[u16], numb2: &[u16]) -> Vec<u16> {
    // for this one, we can just use the basic add function
    utils::add(base, numb1, numb2)
}

pub fn subtract(base: u16, numb1: &[u16], numb2: &[u16]) -> Vec<u16> {
    // for this one, we can just use the basic subtract function
    utils::subtract(base, numb1, numb2)
}

pub fn div(base: u16, numb1: &[u16], numb2: &[u16]) -> (Vec<u16>, Vec<u16>) {
    // for this one, we can just use the basic div function
    utils::div(base, numb1, numb2)
}

pub fn mul(base: u16, numb1: &[u16], numb2: &[u16]) -> Vec<u16> {
    // for this one, we can just use the basic mul function
    utils::mul(base, numb1, numb2)
}

pub fn greater_than(numb1: &[u16], numb2: &[u16]) -> bool {
    // for this one, we can just use the basic greater_than function
    utils::greater_than(numb1, numb2)
}

pub fn trim_base_vec(vec: &mut Vec<u16>) -> Vec<u16> {
    // for this one, we can just use the basic trim_base_vec function
    utils::trim_base_vec(vec)
}