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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161



use std::{fmt::{self, Display}};
use unindent::{unindent, Unindent};

use crate::_Object;
use crate::type_of;

#[derive(Copy)]
#[derive(Clone)]
pub struct Float<T: Sized> {
    _float: T
}

// impl<T> Float<T>
// where T: Sized
// {
//     pub fn new() -> Float<T> {
//         Float {
//             _float: 0.0f32
//         }
//     }
// }

// impl Float<f64>
// {
//     pub fn new() -> Float<f64> {
//         Float {
//             _float: 0.0f64
//         }
//     }
// }

impl From<f32> for Float<f32> {
    fn from(_float: f32) -> Self {
        Float {
            _float
        }
    }
}

impl From<f64> for Float<f64> {
    fn from(_float: f64) -> Self {
        Float {
            _float
        }
    }
}

impl Default for Float<f32> {
    fn default() -> Self {
        Float {
            _float: 0.0f32
        }
    }
}

impl Default for Float<f64> {
    fn default() -> Self {
        Float {
            _float: 0.0f64
        }
    }
}


impl _Object for Float<f32> {
    fn __repr__(&self) -> String {
        format!("{}", self._float)
    }

    fn __len__(&self) -> usize {
        self._float as usize
    }

    fn __str__(&self) -> String {
        format!("{}", self._float)
    }
}

impl _Object for Float<f64> {
    fn __repr__(&self) -> String {
        format!("{}", self._float)
    }

    fn __len__(&self) -> usize {
        self._float as usize
    }

    fn __str__(&self) -> String {
        format!("{}", self._float)
    }
}


impl fmt::Display for Float<f32> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        let _type = type_of(&self._float);
        if formatter.alternate() {
            write!(formatter, "{} -> <{}>", self.__str__(), _type)
        } else {
            write!(formatter, "{}", self.__str__())
        }
    }
}

impl fmt::Display for Float<f64> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        let _type = type_of(&self._float);
        if formatter.alternate() {
            write!(formatter, "{} -> <{}>", self.__str__(), _type)
        } else {
            write!(formatter, "{}", self.__str__())
        }
    }
}







// https://doc.rust-lang.org/std/fmt/struct.Formatter.html
// TODO make something like rich inspect with colors and stuff
impl<T> fmt::Debug for Float<T>
where T: Sized + Display
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // https://doc.rust-lang.org/std/fmt/struct.Formatter.html#method.alternate
        let _type = type_of(&self._float);

        if f.alternate() {
            let _fmt = format!("Float<{}> {{
                _float: {}
            }}", _type, self._float);
            let _fmt = _fmt.unindent();
            write!(f,  "{}", _fmt)
        } else {
            write!(f, "Float<{}> {{ _float: {} }}", _type, self._float)
        }
    }
}

// impl fmt::Debug for Float<f64> {
//     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
//         // https://doc.rust-lang.org/std/fmt/struct.Formatter.html#method.alternate
//         let _type = "f64";

//         if f.alternate() {
//             let _fmt = format!("Float<{}> {{
//                 _float: {}
//             }}", _type, self._float);
//             let _fmt = _fmt.unindent();
//             write!(f,  "{}", _fmt)
//         } else {
//             write!(f, "Float<{}> {{ _float: {} }}", _type, self._float)
//         }
//     }
// }