Cyclomatic Complexity
Measures the cyclomatic complexity of a class. Cyclomatic complexity is defined by the formula:
sum-over-methods((number of exit points) - 1) + 2
A large value may indicate complex code with too much branching.
Last modified date: 09/19/2019