timCF

Results 2 comments of timCF

Thanks, currently I will try to use tiny additional Erlang files for these type annotations! But idea about `#rec{}` as syntactic sugar for `{rec, ...}` looks very reasonable as well...

I tried it, anyway, if I have code like ```elixir @spec parse_pem(binary() | :public_key.private_key()) :: :public_key.private_key() def parse_pem(rsa_private_key() = pem), do: pem def parse_pem(dsa_private_key() = pem), do: pem def parse_pem(ec_private_key()...