Remove footgun function

This commit is contained in:
Michael Sproul
2025-01-06 14:06:57 +11:00
parent 0c2c8c4224
commit de01f923c7

View File

@@ -118,10 +118,6 @@ impl<T> RuntimeVariableList<T> {
}
}
pub fn set_max_len(&mut self, max_len: usize) {
self.max_len = Some(max_len);
}
/// Returns the number of values presently in `self`.
pub fn len(&self) -> usize {
self.vec.len()