fp-core.rs icon indicating copy to clipboard operation
fp-core.rs copied to clipboard

lifetime

Open nrolland opened this issue 5 years ago • 1 comments

The lifetime here seem very restrictive

https://github.com/JasonShin/fp-core.rs/blob/4564c429f2ebc89a810f3e064f7db5e76ac68f6e/fp-core/src/semigroup.rs#L2

Shouldn't that be more something like

fn combine(self, other: &Self) -> Self;

nrolland avatar Sep 15 '20 17:09 nrolland

Thanks for the issue @nrolland, it makes sense to accept a reference for the other param, I will update it soon

JasonShin avatar Nov 21 '20 00:11 JasonShin