gitextract_o95d9xrv/ ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Cartography/ │ ├── Align.swift │ ├── AutoresizingMaskLayoutProxy.swift │ ├── Cartography.h │ ├── Coefficients.swift │ ├── Compound.swift │ ├── Constrain.swift │ ├── Constraint.swift │ ├── ConstraintGroup.swift │ ├── Context.swift │ ├── Dimension.swift │ ├── Distribute.swift │ ├── Edge.swift │ ├── Edges.swift │ ├── Expression.swift │ ├── Extensions.swift │ ├── Info.plist │ ├── LayoutGuide.swift │ ├── LayoutGuideProxy.swift │ ├── LayoutItem.swift │ ├── LayoutProxy+TypeErasure.swift │ ├── LayoutProxy.swift │ ├── LayoutSupport.swift │ ├── LayoutSupportProxy.swift │ ├── Point.swift │ ├── Priority.swift │ ├── Property.swift │ ├── Size.swift │ ├── View.swift │ └── ViewProxy.swift ├── Cartography.podspec ├── Cartography.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── Cartography-Mac.xcscheme │ ├── Cartography-iOS.xcscheme │ └── Cartography-tvOS.xcscheme ├── Cartography.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── CartographyTests/ │ ├── AlignSpec.swift │ ├── ConstraintGroupSpec.swift │ ├── DimensionSpec.swift │ ├── DistributeSpec.swift │ ├── EdgeSpec.swift │ ├── EdgesSpec.swift │ ├── Info.plist │ ├── LayoutGuideSpec.swift │ ├── LayoutSupportSpec.swift │ ├── Matchers.swift │ ├── MemoryLeakSpec.swift │ ├── PointSpec.swift │ ├── PrioritySpec.swift │ ├── SizeSpec.swift │ ├── TestView.swift │ ├── ViewHierarchySpec.swift │ ├── ViewLayoutGuideSpec.swift │ └── ViewProxyTests.swift ├── LICENSE ├── Package.swift ├── Podfile └── README.md