(self, init)
| 79 | return self._new_apply("len", [obj], {}, o_len=None, pure=True) |
| 80 | |
| 81 | def list(self, init): |
| 82 | return self._new_apply("list", [as_apply(init)], {}, o_len=None, pure=True) |
| 83 | |
| 84 | def map(self, fn, seq, pure=False): |
| 85 | """ |
no test coverage detected