Results 45 comments of Michael Truog

@RaimoNiskanen `is_function_exported/1,2` seems more natural to me, but I also always try to use common prefixes to group ideas (when I am allowed to). Either way, it sounds like a...

I think using the term "exported" is valid because it is describing a future expectation that the function must be exported to be used, otherwise it will be considered undefined...

@starbelly People haven't liked `fun_info/1` in the past. The documentation says it is only meant for debugging and the function returns more than you normally need, in proplist format due...

@starbelly A named function could be a local function, so the "named" word doesn't help to distinguish between exported functions and local functions.

@starbelly Using `is_function_atomic` or `is_function_updatable` would avoid using `exported`, but the function names seem a bit less intuitive.