Repetition stats

This commit is contained in:
2026-04-20 15:21:31 +03:00
parent f54070079d
commit bc0e360b96
3 changed files with 23 additions and 10 deletions
+4
View File
@@ -392,4 +392,8 @@ impl CardSet {
fn history_len(&self) -> usize {
return min(MAX_HISTORY_LEN, (self.set.len() as f32 * MAX_HISTORY_LEN_PART) as usize);
}
pub fn len(&self) -> usize {
self.set.len()
}
}