Felix Lange
Felix Lange
neat idea.
Yeah. Sublime-Erlang will probably not include plugin functionality in the foreseeable future. @joewilliams Since this is your ticket, would you mind moving it to SublimErl?
Since SublimErl seems to be dead and Sublime-Erlang now includes plugin code (for Sublime Text 3) the electric semicolons could be a nice addition. I do not have time to...
Yeah, why not. Question is mostly, how it will be done. Does fastssz support encoding by reflection?
Looking at fastssz, it doesn't seem so easy. `ssz.Marshal` expects a `Marshaler` as argument, which is supposed to perform the encoding and also should be able to compute the encoded...
The main purpose of `gencodec` is features such as 'required fields' and the 'override type'. If you need these, I think you'd be much better off just implementing them in...
You're probably better off with the rebar build system, which is also included in this package.
It doesn't support double-pointer conversion. We could add this, but I'm wondering why you need double-pointer in the first place?
Double pointer conversion is not hard to add if you really do need it though. First you would have to allow it in this function here: https://github.com/fjl/gencodec/blob/f9840df7b83e876ee46553727f7523cebdc7e90b/types_util.go#L128 Then it needs...
> e.g. **big.Int, an nil *big.Int means the balance is not overrided; What I find strange about this, is that usually it is enough to have a single pointer in...