global: snapshot

This commit is contained in:
nym21
2025-11-25 17:21:07 +01:00
parent c644781d18
commit dc86514329
87 changed files with 335 additions and 1436 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
use std::ops::{Add, AddAssign, Div};
use vecdb::{Formattable, Pco};
use vecdb::{Formattable, PcoVecValue};
pub trait ComputedVecValue
where
Self: Pco
Self: PcoVecValue
+ From<usize>
+ Div<usize, Output = Self>
+ Add<Output = Self>
@@ -14,7 +14,7 @@ where
{
}
impl<T> ComputedVecValue for T where
T: Pco
T: PcoVecValue
+ From<usize>
+ Div<usize, Output = Self>
+ Add<Output = Self>