is_exported

docblock
is_exported(module_name::Module) -> Function

Create a selector that matches exported symbols.

Example

selector = is_exported(MyModule)
selector(:exported_func)    # true if exported
selector(:internal_func)    # false