SHJackie

Results 1 comments of SHJackie

``` from operator import neg from oslash import List, Just List.__rmod__ = lambda self, fn: self.map(fn) Just.__mul__ = lambda self, other: self.apply(other) a = List.from_iterable([1, 2, 3]) b = List.from_iterable([-1,...