Witold Szczerba
Witold Szczerba
I would vote for: `intersectionBy: (a -> a -> Bool) -> List a -> List a -> List a` is better than: `intersectionBy: ((a, a) -> Bool) -> List a...
Maybe better name for: `intersectionBy` would be an `intersectionWith`? I am looking at the RamdaJS http://ramdajs.com/docs/ library. All that functions and their names were carefully though out, in the past...
Actually I think it should be `(a -> b -> Bool) -> List a -> List b -> List a` , because there is no need for both lists to...
@pzp1997 > Another question is how would one even define intersection for lists. In terms of handling duplicate values, should intersection [ 1, 1 ] [ 1, 1 ] equal...
@pzp1997 > ``` only : List a -> List a -> List a only list = List.filter How about filterMember, in the singular? I used plural, because we are checking...
So, to summarize: - Ethereum can use regular transfer to the contract to trigger the anonymous function - The above does not work in Semux Is that correct? If so,...
@semuxgo is it really different design or it just happened to work that way. I must admit that I have lost lot of time trying to figure out why my...
- transaction billing: does not seem to be a problem (at least from my limited pov), options: - the fee will just change to whatever works in EVM - the...
I would like to mention that in my case: special flag to enable only public API would be a little disadvantage, because my public endpoints are also my wallet API...
> Allow people to open arbitrary combination of APIs through configuration. e.g. api.serviceEnabled=chain,account,delegate,tools. What would be the reason anyone would like anything else than these two options? - I want...