python/
iterable.rs

1use crate::_Object;
2
3/// implement iterable for List for example
4/// i need this to use with max min builtins
5pub trait Iterable: _Object {
6    /// return the length of the collection/container/iterable
7    fn __len__(&self) -> usize;
8}