robb / Cartography

A declarative Auto Layout DSL for Swift :iphone::triangular_ruler:
Other
7.34k stars 525 forks source link

Make the `makeEqual` function public? #264

Open bcattle opened 7 years ago

bcattle commented 7 years ago

Similar to #191, would it be possible/desirable to make the makeEqual function public? The specific use case I envision is for pinning a group of views with equal widths or heights.

Then you could just write

constrain(views) { (views) in
    makeEqual(by: { $0.width }, elements: views)
}