↧
Answer by legoscia for Dialyzer: Unknown Type re:mp()
re.erl does define the mp/0 type, but since there is no -export_type declaration (described in the docs here), it is not available to other modules. (See also this Github issue)To make the type re:mp()...
View ArticleDialyzer: Unknown Type re:mp()
In this contrived example, the parsing module offers a function called parse_equation/2, which accepts an equation to be parsed, and a regular expression pattern to be used for said...
View Article