We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Algae.Maybe
Hi!
I think it would be useful to have a parameterized type for optional entities, e.g.
@spec f(Algae.Maybe.t(String.t())) :: any def f(opt_name) do # ... end
We could simply add a @type t(x) :: ... to Algae.Maybe, but ideally defdata would take care of it. Is it possible?
@type t(x) :: ...
defdata
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
I think it would be useful to have a parameterized type for optional entities, e.g.
We could simply add a
@type t(x) :: ...
toAlgae.Maybe
, but ideallydefdata
would take care of it. Is it possible?The text was updated successfully, but these errors were encountered: