erlang / otp

Erlang/OTP
http://erlang.org
Apache License 2.0
11.41k stars 2.95k forks source link

Add native functions to module info #9072

Open garazdawi opened 1 week ago

garazdawi commented 1 week ago

Is your feature request related to a problem? Please describe. We need a way to get information about which functions in a module is backed by native code, both nifs or bifs.

Describe the solution you'd like the funcion lists:module_info(native_functions) should return a list of functions that are implemented using native code. It should return both exported and private functions.

Additional context

9010