return max of args
(self, *args)
| 93 | return self._new_apply("range", args, {}, o_len=None, pure=True) |
| 94 | |
| 95 | def max(self, *args): |
| 96 | """return max of args""" |
| 97 | return self._new_apply( |
| 98 | "max", list(map(as_apply, args)), {}, o_len=None, pure=True |
| 99 | ) |
| 100 | |
| 101 | def min(self, *args): |
| 102 | """return min of args""" |