Module: Constructs::ConstructOrder

Defined in:
construct_order.rb

Overview

In what order to return constructs.

Constant Summary collapse

PREORDER =

Depth-first, pre-order.

Jsii::Enum.new("constructs.ConstructOrder", "PREORDER")
POSTORDER =

Depth-first, post-order (leaf nodes first).

Jsii::Enum.new("constructs.ConstructOrder", "POSTORDER")