-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Reading Elixir Code
documentation
When you're on a new project you need to read code to understand what's happening. This involves many time trying to understand the big picture about the project. Based on the Programmer's Brain, we need mental models to understand code abstractions, ex_plain is a tool to visualize, instead of software diagrams, mental models to boots our understanding.
Mental Model: Technical representation about a piece of code.
Basic mental models for elixir systems:
Mental Models for read Elixir Code
- Module Backbone: Show all the functions public and private available in a module.-
- Function Structure: Show all the functions used in a function.
- Function Usage: Show all the modules and functions we're the function is being used.
- Function Data Flow: Show how an input transforms into a output in a function.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation