Skip to main content
Version: latest

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