multiversx_sc/api/uncallable/
big_int_api_uncallable.rs

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
use core::cmp::Ordering;

use crate::api::{BigIntApiImpl, Sign};

impl BigIntApiImpl for super::UncallableApi {
    fn bi_new(&self, _value: i64) -> Self::BigIntHandle {
        unreachable!()
    }

    fn bi_set_int64(&self, _destination: Self::BigIntHandle, _value: i64) {
        unreachable!()
    }

    fn bi_to_i64(&self, _reference: Self::BigIntHandle) -> Option<i64> {
        unreachable!()
    }

    fn bi_add(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_sub(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_mul(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_t_div(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_t_mod(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_abs(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_neg(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_sign(&self, _x: Self::BigIntHandle) -> Sign {
        unreachable!()
    }

    fn bi_cmp(&self, _x: Self::BigIntHandle, _y: Self::BigIntHandle) -> Ordering {
        unreachable!()
    }

    fn bi_sqrt(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_pow(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_log2(&self, _x: Self::BigIntHandle) -> i32 {
        unreachable!()
    }

    fn bi_and(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_or(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_xor(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _y: Self::BigIntHandle) {
        unreachable!()
    }

    fn bi_shr(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _bits: usize) {
        unreachable!()
    }

    fn bi_shl(&self, _dest: Self::BigIntHandle, _x: Self::BigIntHandle, _bits: usize) {
        unreachable!()
    }

    fn bi_to_string(&self, _bi_handle: Self::BigIntHandle, _str_handle: Self::ManagedBufferHandle) {
        unreachable!()
    }
}