Elixir Streams |> Introspecting modules at runtime
I didn’t know about Elixir’s Module.__info__/1
until recently.
It’s a super handy function to help us introspect modules at runtime. 😎 We can get info like the functions, macros, attributes, struct and more.
Check out a quick demo!
Read next Thinking Elixir 182: Year End Review