use std::ops::{Add, Sub};
use bend::imp;
use pyo3::{pyclass, pymethods};
use super::{BendResult, BendType};
#[pyclass(module = "benda")]
#[derive(Clone, Copy, PartialEq, PartialOrd)]
pub struct F24(f32);
impl BendType for F24 {
fn to_bend(&self) -> BendResult {
Ok(imp::Expr::Num {
val: bend::fun::Num::F24(self.0),
})
}
}
impl F24 {
pub fn new(value: f32) -> Self {
Self(value)
}
pub fn get(self) -> f32 {
self.0
}
}
impl std::fmt::Debug for F24 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl std::fmt::Display for F24 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<f32> for F24 {
fn from(value: f32) -> Self {
F24::new(value)
}
}
impl From<F24> for f32 {
fn from(val: F24) -> Self {
val.0
}
}
impl std::ops::Add for F24 {
type Output = Self;
fn add(self, other: Self) -> Self {
F24::new(self.0 + other.0)
}
}
impl std::ops::Sub for F24 {
type Output = Self;
fn sub(self, other: Self) -> Self {
F24::new(self.0 - other.0)
}
}
#[pymethods]
impl F24 {
#[new]
fn new_py(value: f32) -> Self {
F24::new(value)
}
fn __add__(&self, other: &Self) -> Self {
F24::add(*self, *other)
}
fn __sub__(&self, other: &Self) -> Self {
F24::sub(*self, *other)
}
fn __str__(&self) -> String {
self.0.to_string()
}
}