Citeration

CWhile

Inheritance diagram of ccg.statements.Citeration.CWhile
class ccg.statements.Citeration.CWhile(condition, statements)

Bases: ccg.statements.Cstatement.CCompoundStatement

While Statement

Parameters
render(style=<ccg.style.Style object>)
Parameters

style (Style) –

Return type

str

CDoWhile

Inheritance diagram of ccg.statements.Citeration.CDoWhile
class ccg.statements.Citeration.CDoWhile(statements, condition)

Bases: ccg.statements.Cstatement.CCompoundStatement

Do While Statement

Parameters
render(style=<ccg.style.Style object>)
Parameters

style (Style) –

Return type

str

CFor

Inheritance diagram of ccg.statements.Citeration.CFor
class ccg.statements.Citeration.CFor(initial=None, condition=None, iteration=None, statements=None)

Bases: ccg.statements.Cstatement.CCompoundStatement

For Statement

Parameters
render(style=<ccg.style.Style object>)
Parameters

style (Style) –

Return type

str