circle
clang_build.circle
Module for the Circle class.
Circle Objectsβ
class Circle(list)
List with a circular dependency representation.
Utility class to print circular dependencies. Given a list ["A", "B", "A"], this list will print as:
A -> B -> A
indicating the circular dependency.
__repr__β
def __repr__() -> str
Return a representation of this circle.
Returnsβ
str An arrow connected string of the circular dependency
__str__β
def __str__() -> str
Return a string representation of this circle.
Returnsβ
str An arrow connected string of the circular dependency