Build Information
Failed to build AutoLayoutProxy, reference master (b072fb
), with Swift 6.1 for Android on 28 May 2025 20:01:14 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
14 |
15 | var width: CGFloat { get }
| `- error: cannot find type 'CGFloat' in scope
16 |
17 | var height: CGFloat { get }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:17:17: error: cannot find type 'CGFloat' in scope
15 | var width: CGFloat { get }
16 |
17 | var height: CGFloat { get }
| `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:20:11: error: cannot find type 'CGSize' in scope
18 | }
19 |
20 | extension CGSize: BBSizeConvertible { }
| `- error: cannot find type 'CGSize' in scope
21 |
22 | extension CGFloat: BBSizeConvertible {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:22:11: error: cannot find type 'CGFloat' in scope
20 | extension CGSize: BBSizeConvertible { }
21 |
22 | extension CGFloat: BBSizeConvertible {
| `- error: cannot find type 'CGFloat' in scope
23 |
24 | public var width: CGFloat { self }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:31:23: error: cannot find type 'CGFloat' in scope
29 | extension Double: BBSizeConvertible {
30 |
31 | public var width: CGFloat { CGFloat(self) }
| `- error: cannot find type 'CGFloat' in scope
32 |
33 | public var height: CGFloat { CGFloat(self) }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:33:24: error: cannot find type 'CGFloat' in scope
31 | public var width: CGFloat { CGFloat(self) }
32 |
33 | public var height: CGFloat { CGFloat(self) }
| `- error: cannot find type 'CGFloat' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:38:23: error: cannot find type 'CGFloat' in scope
36 | extension Int: BBSizeConvertible {
37 |
38 | public var width: CGFloat { CGFloat(self) }
| `- error: cannot find type 'CGFloat' in scope
39 |
40 | public var height: CGFloat { CGFloat(self) }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBConvertible/BBSizeConvertible.swift:40:24: error: cannot find type 'CGFloat' in scope
38 | public var width: CGFloat { CGFloat(self) }
39 |
40 | public var height: CGFloat { CGFloat(self) }
| `- error: cannot find type 'CGFloat' in scope
41 | }
42 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:17:41: error: cannot find type 'NSLayoutConstraint' in scope
15 | public protocol BBLayoutAnchor {
16 | func constraint(equalTo: Self,
17 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
18 | func constraint(greaterThanOrEqualTo: Self,
19 | constant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:17:29: error: cannot find type 'CGFloat' in scope
15 | public protocol BBLayoutAnchor {
16 | func constraint(equalTo: Self,
17 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
18 | func constraint(greaterThanOrEqualTo: Self,
19 | constant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:19:41: error: cannot find type 'NSLayoutConstraint' in scope
17 | constant: CGFloat) -> NSLayoutConstraint
18 | func constraint(greaterThanOrEqualTo: Self,
19 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
20 | func constraint(lessThanOrEqualTo: Self,
21 | constant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:19:29: error: cannot find type 'CGFloat' in scope
17 | constant: CGFloat) -> NSLayoutConstraint
18 | func constraint(greaterThanOrEqualTo: Self,
19 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
20 | func constraint(lessThanOrEqualTo: Self,
21 | constant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:21:41: error: cannot find type 'NSLayoutConstraint' in scope
19 | constant: CGFloat) -> NSLayoutConstraint
20 | func constraint(lessThanOrEqualTo: Self,
21 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:21:29: error: cannot find type 'CGFloat' in scope
19 | constant: CGFloat) -> NSLayoutConstraint
20 | func constraint(lessThanOrEqualTo: Self,
21 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:28:31: error: cannot find type 'NSLayoutConstraint' in scope
26 | @discardableResult func equalTo(
27 | _ anchor: Self,
28 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
29 | let constraint = constraint(equalTo: anchor,
30 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:28:15: error: cannot find type 'CGFloat' in scope
26 | @discardableResult func equalTo(
27 | _ anchor: Self,
28 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
29 | let constraint = constraint(equalTo: anchor,
30 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:37:31: error: cannot find type 'NSLayoutConstraint' in scope
35 | @discardableResult func greaterThanOrEqualTo(
36 | _ anchor: Self,
37 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
38 | let constraint = constraint(greaterThanOrEqualTo: anchor,
39 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:37:15: error: cannot find type 'CGFloat' in scope
35 | @discardableResult func greaterThanOrEqualTo(
36 | _ anchor: Self,
37 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
38 | let constraint = constraint(greaterThanOrEqualTo: anchor,
39 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:46:31: error: cannot find type 'NSLayoutConstraint' in scope
44 | @discardableResult func lessThanOrEqualTo(
45 | _ anchor: Self,
46 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
47 | let constraint = constraint(lessThanOrEqualTo: anchor,
48 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:46:15: error: cannot find type 'CGFloat' in scope
44 | @discardableResult func lessThanOrEqualTo(
45 | _ anchor: Self,
46 | constant: CGFloat = 0) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
47 | let constraint = constraint(lessThanOrEqualTo: anchor,
48 | constant: constant)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutAnchor.swift:54:11: error: cannot find type 'NSLayoutAnchor' in scope
52 | }
53 |
54 | extension NSLayoutAnchor: BBLayoutAnchor { }
| `- error: cannot find type 'NSLayoutAnchor' in scope
55 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:19:17: error: cannot find type 'CGFloat' in scope
17 | var identifier: String? { get set }
18 |
19 | var constant: CGFloat { get set }
| `- error: cannot find type 'CGFloat' in scope
20 |
21 | var multiplier: CGFloat { get }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:21:19: error: cannot find type 'CGFloat' in scope
19 | var constant: CGFloat { get set }
20 |
21 | var multiplier: CGFloat { get }
| `- error: cannot find type 'CGFloat' in scope
22 |
23 | init(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:25:22: error: cannot find type 'NSLayoutConstraint' in scope
23 | init(
24 | item view1: Any,
25 | attribute attr1: NSLayoutConstraint.Attribute,
| `- error: cannot find type 'NSLayoutConstraint' in scope
26 | relatedBy relation: NSLayoutConstraint.Relation,
27 | toItem view2: Any?,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:26:25: error: cannot find type 'NSLayoutConstraint' in scope
24 | item view1: Any,
25 | attribute attr1: NSLayoutConstraint.Attribute,
26 | relatedBy relation: NSLayoutConstraint.Relation,
| `- error: cannot find type 'NSLayoutConstraint' in scope
27 | toItem view2: Any?,
28 | attribute attr2: NSLayoutConstraint.Attribute,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:28:22: error: cannot find type 'NSLayoutConstraint' in scope
26 | relatedBy relation: NSLayoutConstraint.Relation,
27 | toItem view2: Any?,
28 | attribute attr2: NSLayoutConstraint.Attribute,
| `- error: cannot find type 'NSLayoutConstraint' in scope
29 | multiplier: CGFloat,
30 | constant c: CGFloat
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:29:17: error: cannot find type 'CGFloat' in scope
27 | toItem view2: Any?,
28 | attribute attr2: NSLayoutConstraint.Attribute,
29 | multiplier: CGFloat,
| `- error: cannot find type 'CGFloat' in scope
30 | constant c: CGFloat
31 | )
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:30:17: error: cannot find type 'CGFloat' in scope
28 | attribute attr2: NSLayoutConstraint.Attribute,
29 | multiplier: CGFloat,
30 | constant c: CGFloat
| `- error: cannot find type 'CGFloat' in scope
31 | )
32 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:37:23: error: cannot find type 'NSLayoutConstraint' in scope
35 | var secondItem: AnyObject? { get }
36 |
37 | var firstAttribute: NSLayoutConstraint.Attribute { get }
| `- error: cannot find type 'NSLayoutConstraint' in scope
38 |
39 | var secondAttribute: NSLayoutConstraint.Attribute { get }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:39:24: error: cannot find type 'NSLayoutConstraint' in scope
37 | var firstAttribute: NSLayoutConstraint.Attribute { get }
38 |
39 | var secondAttribute: NSLayoutConstraint.Attribute { get }
| `- error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | var relation: NSLayoutConstraint.Relation { get }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:41:17: error: cannot find type 'NSLayoutConstraint' in scope
39 | var secondAttribute: NSLayoutConstraint.Attribute { get }
40 |
41 | var relation: NSLayoutConstraint.Relation { get }
| `- error: cannot find type 'NSLayoutConstraint' in scope
42 |
43 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:65:45: error: cannot find type 'CGFloat' in scope
63 | }
64 |
65 | @discardableResult func constant(_ value: CGFloat) -> Self {
| `- error: cannot find type 'CGFloat' in scope
66 | constant = value
67 | return self
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:70:52: error: cannot find type 'CGFloat' in scope
68 | }
69 |
70 | @discardableResult func multiplier(_ multiplier: CGFloat) -> Self {
| `- error: cannot find type 'CGFloat' in scope
71 |
72 | let newConstraint = Self(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutConstraint.swift:106:11: error: cannot find type 'NSLayoutConstraint' in scope
104 | }
105 |
106 | extension NSLayoutConstraint: BBLayoutConstraint { }
| `- error: cannot find type 'NSLayoutConstraint' in scope
107 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:18:41: error: cannot find type 'NSLayoutConstraint' in scope
16 | func constraint(equalTo: Self,
17 | multiplier: CGFloat,
18 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
19 | func constraint(greaterThanOrEqualTo: Self,
20 | multiplier: CGFloat,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:17:31: error: cannot find type 'CGFloat' in scope
15 | public protocol BBLayoutDimension: BBLayoutAnchor {
16 | func constraint(equalTo: Self,
17 | multiplier: CGFloat,
| `- error: cannot find type 'CGFloat' in scope
18 | constant: CGFloat) -> NSLayoutConstraint
19 | func constraint(greaterThanOrEqualTo: Self,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:18:29: error: cannot find type 'CGFloat' in scope
16 | func constraint(equalTo: Self,
17 | multiplier: CGFloat,
18 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
19 | func constraint(greaterThanOrEqualTo: Self,
20 | multiplier: CGFloat,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:21:41: error: cannot find type 'NSLayoutConstraint' in scope
19 | func constraint(greaterThanOrEqualTo: Self,
20 | multiplier: CGFloat,
21 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
22 | func constraint(lessThanOrEqualTo: Self,
23 | multiplier: CGFloat,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:20:31: error: cannot find type 'CGFloat' in scope
18 | constant: CGFloat) -> NSLayoutConstraint
19 | func constraint(greaterThanOrEqualTo: Self,
20 | multiplier: CGFloat,
| `- error: cannot find type 'CGFloat' in scope
21 | constant: CGFloat) -> NSLayoutConstraint
22 | func constraint(lessThanOrEqualTo: Self,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:21:29: error: cannot find type 'CGFloat' in scope
19 | func constraint(greaterThanOrEqualTo: Self,
20 | multiplier: CGFloat,
21 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
22 | func constraint(lessThanOrEqualTo: Self,
23 | multiplier: CGFloat,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:24:41: error: cannot find type 'NSLayoutConstraint' in scope
22 | func constraint(lessThanOrEqualTo: Self,
23 | multiplier: CGFloat,
24 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:23:31: error: cannot find type 'CGFloat' in scope
21 | constant: CGFloat) -> NSLayoutConstraint
22 | func constraint(lessThanOrEqualTo: Self,
23 | multiplier: CGFloat,
| `- error: cannot find type 'CGFloat' in scope
24 | constant: CGFloat) -> NSLayoutConstraint
25 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:24:29: error: cannot find type 'CGFloat' in scope
22 | func constraint(lessThanOrEqualTo: Self,
23 | multiplier: CGFloat,
24 | constant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:26:48: error: cannot find type 'NSLayoutConstraint' in scope
24 | constant: CGFloat) -> NSLayoutConstraint
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:26:36: error: cannot find type 'CGFloat' in scope
24 | constant: CGFloat) -> NSLayoutConstraint
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:27:61: error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
29 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:27:49: error: cannot find type 'CGFloat' in scope
25 |
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
29 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:28:58: error: cannot find type 'NSLayoutConstraint' in scope
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'NSLayoutConstraint' in scope
29 | }
30 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:28:46: error: cannot find type 'CGFloat' in scope
26 | func constraint(equalToConstant: CGFloat) -> NSLayoutConstraint
27 | func constraint(greaterThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
28 | func constraint(lessThanOrEqualToConstant: CGFloat) -> NSLayoutConstraint
| `- error: cannot find type 'CGFloat' in scope
29 | }
30 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:36:33: error: cannot find type 'NSLayoutConstraint' in scope
34 | _ anchor: Self,
35 | constant: CGFloat = 0,
36 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
37 | let constraint = constraint(equalTo: anchor,
38 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:35:15: error: cannot find type 'CGFloat' in scope
33 | @discardableResult func equalTo(
34 | _ anchor: Self,
35 | constant: CGFloat = 0,
| `- error: cannot find type 'CGFloat' in scope
36 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
37 | let constraint = constraint(equalTo: anchor,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:36:17: error: cannot find type 'CGFloat' in scope
34 | _ anchor: Self,
35 | constant: CGFloat = 0,
36 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
37 | let constraint = constraint(equalTo: anchor,
38 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:47:33: error: cannot find type 'NSLayoutConstraint' in scope
45 | _ anchor: Self,
46 | constant: CGFloat = 0,
47 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | let constraint = constraint(greaterThanOrEqualTo: anchor,
49 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:46:15: error: cannot find type 'CGFloat' in scope
44 | @discardableResult func greaterThanOrEqualTo(
45 | _ anchor: Self,
46 | constant: CGFloat = 0,
| `- error: cannot find type 'CGFloat' in scope
47 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
48 | let constraint = constraint(greaterThanOrEqualTo: anchor,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:47:17: error: cannot find type 'CGFloat' in scope
45 | _ anchor: Self,
46 | constant: CGFloat = 0,
47 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
48 | let constraint = constraint(greaterThanOrEqualTo: anchor,
49 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:58:33: error: cannot find type 'NSLayoutConstraint' in scope
56 | _ anchor: Self,
57 | constant: CGFloat = 0,
58 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
59 | let constraint = constraint(lessThanOrEqualTo: anchor,
60 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:57:15: error: cannot find type 'CGFloat' in scope
55 | @discardableResult func lessThanOrEqualTo(
56 | _ anchor: Self,
57 | constant: CGFloat = 0,
| `- error: cannot find type 'CGFloat' in scope
58 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
59 | let constraint = constraint(lessThanOrEqualTo: anchor,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:58:17: error: cannot find type 'CGFloat' in scope
56 | _ anchor: Self,
57 | constant: CGFloat = 0,
58 | multiplier: CGFloat = 1) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
59 | let constraint = constraint(lessThanOrEqualTo: anchor,
60 | multiplier: multiplier,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:67:29: error: cannot find type 'NSLayoutConstraint' in scope
65 |
66 | @discardableResult func equalTo(
67 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
68 | let constraint = constraint(equalToConstant: constant)
69 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:67:17: error: cannot find type 'CGFloat' in scope
65 |
66 | @discardableResult func equalTo(
67 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
68 | let constraint = constraint(equalToConstant: constant)
69 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:74:29: error: cannot find type 'NSLayoutConstraint' in scope
72 |
73 | @discardableResult func greaterThanOrEqualTo(
74 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
75 | let constraint = constraint(greaterThanOrEqualToConstant: constant)
76 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:74:17: error: cannot find type 'CGFloat' in scope
72 |
73 | @discardableResult func greaterThanOrEqualTo(
74 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
75 | let constraint = constraint(greaterThanOrEqualToConstant: constant)
76 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:81:29: error: cannot find type 'NSLayoutConstraint' in scope
79 |
80 | @discardableResult func lessThanOrEqualTo(
81 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
82 | let constraint = constraint(lessThanOrEqualToConstant: constant)
83 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:81:17: error: cannot find type 'CGFloat' in scope
79 |
80 | @discardableResult func lessThanOrEqualTo(
81 | _ constant: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
82 | let constraint = constraint(lessThanOrEqualToConstant: constant)
83 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBDeclarative/BBLayoutDimension.swift:88:11: error: cannot find type 'NSLayoutDimension' in scope
86 | }
87 |
88 | extension NSLayoutDimension: BBLayoutDimension { }
| `- error: cannot find type 'NSLayoutDimension' in scope
89 |
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/BBMultiplier.swift:15:23: error: cannot find type 'CGFloat' in scope
13 | public struct BBMultiplier {
14 |
15 | public var width: CGFloat
| `- error: cannot find type 'CGFloat' in scope
16 |
17 | public var height: CGFloat
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/BBMultiplier.swift:17:24: error: cannot find type 'CGFloat' in scope
15 | public var width: CGFloat
16 |
17 | public var height: CGFloat
| `- error: cannot find type 'CGFloat' in scope
18 |
19 | public init(w width: CGFloat = 1, h height: CGFloat = 1) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/BBMultiplier.swift:19:26: error: cannot find type 'CGFloat' in scope
17 | public var height: CGFloat
18 |
19 | public init(w width: CGFloat = 1, h height: CGFloat = 1) {
| `- error: cannot find type 'CGFloat' in scope
20 | self.width = width
21 | self.height = height
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/BBMultiplier.swift:19:49: error: cannot find type 'CGFloat' in scope
17 | public var height: CGFloat
18 |
19 | public init(w width: CGFloat = 1, h height: CGFloat = 1) {
| `- error: cannot find type 'CGFloat' in scope
20 | self.width = width
21 | self.height = height
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/BBMultiplier.swift:24:18: error: cannot find type 'CGFloat' in scope
22 | }
23 |
24 | init(_ both: CGFloat = 1) {
| `- error: cannot find type 'CGFloat' in scope
25 | self.init(w: both, h: both)
26 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:15:39: error: cannot find type 'NSLayoutConstraint' in scope
13 | #endif
14 |
15 | public extension Set where Element == NSLayoutConstraint.Attribute {
| `- error: cannot find type 'NSLayoutConstraint' in scope
16 |
17 | static var allSides: Set<NSLayoutConstraint.Attribute> {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:17:30: error: cannot find type 'NSLayoutConstraint' in scope
15 | public extension Set where Element == NSLayoutConstraint.Attribute {
16 |
17 | static var allSides: Set<NSLayoutConstraint.Attribute> {
| `- error: cannot find type 'NSLayoutConstraint' in scope
18 | [.top, .leading, .bottom, .trailing]
19 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:21:32: error: cannot find type 'NSLayoutConstraint' in scope
19 | }
20 |
21 | static var horizontal: Set<NSLayoutConstraint.Attribute> {
| `- error: cannot find type 'NSLayoutConstraint' in scope
22 | [.leading, .trailing]
23 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:25:30: error: cannot find type 'NSLayoutConstraint' in scope
23 | }
24 |
25 | static var vertical: Set<NSLayoutConstraint.Attribute> {
| `- error: cannot find type 'NSLayoutConstraint' in scope
26 | [.top, .bottom]
27 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:29:33: error: cannot find type 'NSLayoutConstraint' in scope
27 | }
28 |
29 | static var bothCenters: Set<NSLayoutConstraint.Attribute> {
| `- error: cannot find type 'NSLayoutConstraint' in scope
30 | [.centerX, .centerY]
31 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBHelpers/NSLayoutConstraintAttributeExtensions.swift:33:36: error: cannot find type 'NSLayoutConstraint' in scope
31 | }
32 |
33 | static var bothDimensions: Set<NSLayoutConstraint.Attribute> {
| `- error: cannot find type 'NSLayoutConstraint' in scope
34 | [.width, .height]
35 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:14:82: error: cannot find type 'NSLayoutConstraint' in scope
12 | #endif
13 |
14 | @discardableResult public func ===<View: BBAnchorable>(lhs: View, rhs: View) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
15 | lhs.sides == rhs.sides
16 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:18:81: error: cannot find type 'NSLayoutConstraint' in scope
16 | }
17 |
18 | @discardableResult public func <=<View: BBAnchorable>(lhs: View, rhs: View) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
19 | lhs.sides <= rhs.sides
20 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:22:81: error: cannot find type 'NSLayoutConstraint' in scope
20 | }
21 |
22 | @discardableResult public func >=<View: BBAnchorable>(lhs: View, rhs: View) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
23 | lhs.sides >= rhs.sides
24 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:134:10: error: cannot find type 'NSLayoutAnchor' in scope
132 |
133 | public func +<AnchorType>(
134 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
135 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
136 | (lhs, (1, rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:135:10: error: cannot find type 'CGFloat' in scope
133 | public func +<AnchorType>(
134 | lhs: NSLayoutAnchor<AnchorType>,
135 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
136 | (lhs, (1, rhs))
137 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:135:23: error: cannot find type 'NSLayoutAnchor' in scope
133 | public func +<AnchorType>(
134 | lhs: NSLayoutAnchor<AnchorType>,
135 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
136 | (lhs, (1, rhs))
137 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:135:52: error: cannot find type 'CGFloat' in scope
133 | public func +<AnchorType>(
134 | lhs: NSLayoutAnchor<AnchorType>,
135 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
136 | (lhs, (1, rhs))
137 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:135:61: error: cannot find type 'CGFloat' in scope
133 | public func +<AnchorType>(
134 | lhs: NSLayoutAnchor<AnchorType>,
135 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
136 | (lhs, (1, rhs))
137 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:159:23: error: cannot find type 'NSLayoutAnchor' in scope
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
160 | (lhs.0, (lhs.1.0, rhs))
161 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:159:59: error: cannot find type 'CGFloat' in scope
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
160 | (lhs.0, (lhs.1.0, rhs))
161 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:159:68: error: cannot find type 'CGFloat' in scope
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
160 | (lhs.0, (lhs.1.0, rhs))
161 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:158:11: error: cannot find type 'NSLayoutAnchor' in scope
156 |
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
160 | (lhs.0, (lhs.1.0, rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:158:47: error: cannot find type 'CGFloat' in scope
156 |
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'CGFloat' in scope
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
160 | (lhs.0, (lhs.1.0, rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:158:56: error: cannot find type 'CGFloat' in scope
156 |
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'CGFloat' in scope
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
160 | (lhs.0, (lhs.1.0, rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:159:10: error: cannot find type 'CGFloat' in scope
157 | public func + (
158 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
159 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
160 | (lhs.0, (lhs.1.0, rhs))
161 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:70:11: error: cannot find type 'NSLayoutAnchor' in scope
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
71 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
72 | (lhs, rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:70:48: error: cannot find type 'NSLayoutAnchor' in scope
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
71 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
72 | (lhs, rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:71:6: error: cannot find type 'NSLayoutAnchor' in scope
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
71 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
72 | (lhs, rhs)
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:71:43: error: cannot find type 'NSLayoutAnchor' in scope
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
71 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
72 | (lhs, rhs)
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:67:23: error: cannot find type 'NSLayoutAnchor' in scope
65 | // MARK: - Quadruple Anchor And Constant Combinations
66 |
67 | public func + (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
69 | rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:67:60: error: cannot find type 'NSLayoutAnchor' in scope
65 | // MARK: - Quadruple Anchor And Constant Combinations
66 |
67 | public func + (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
69 | rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:68:6: error: cannot find type 'NSLayoutAnchor' in scope
66 |
67 | public func + (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:68:43: error: cannot find type 'NSLayoutAnchor' in scope
66 |
67 | public func + (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
68 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
69 | rhs: BBEdgeInsetConvertible)
70 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:59:10: error: cannot find type 'NSLayoutAnchor' in scope
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
60 | ((lhs.0, lhs.1), (rhs.horizontal, rhs.vertical))
61 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:59:47: error: cannot find type 'NSLayoutAnchor' in scope
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
60 | ((lhs.0, lhs.1), (rhs.horizontal, rhs.vertical))
61 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:59:86: error: cannot find type 'CGFloat' in scope
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
60 | ((lhs.0, lhs.1), (rhs.horizontal, rhs.vertical))
61 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:59:95: error: cannot find type 'CGFloat' in scope
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
60 | ((lhs.0, lhs.1), (rhs.horizontal, rhs.vertical))
61 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:57:22: error: cannot find type 'NSLayoutAnchor' in scope
55 | // MARK: - Double Anchor And Constant Combinations
56 |
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:57:59: error: cannot find type 'NSLayoutAnchor' in scope
55 | // MARK: - Double Anchor And Constant Combinations
56 |
57 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
58 | rhs: BBOffsetConvertible)
59 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:71:10: error: cannot find type 'NSLayoutAnchor' in scope
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
72 | ((lhs.0, lhs.1), (rhs.left, -rhs.right))
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:71:47: error: cannot find type 'NSLayoutAnchor' in scope
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
72 | ((lhs.0, lhs.1), (rhs.left, -rhs.right))
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:71:86: error: cannot find type 'CGFloat' in scope
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
72 | ((lhs.0, lhs.1), (rhs.left, -rhs.right))
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:71:95: error: cannot find type 'CGFloat' in scope
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
72 | ((lhs.0, lhs.1), (rhs.left, -rhs.right))
73 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:69:22: error: cannot find type 'NSLayoutAnchor' in scope
67 | }
68 |
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:69:59: error: cannot find type 'NSLayoutAnchor' in scope
67 | }
68 |
69 | public func + (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
70 | rhs: BBEdgeInsetConvertible)
71 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:83:10: error: cannot find type 'NSLayoutAnchor' in scope
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
84 | ((lhs.0, lhs.1), (rhs.top, -rhs.bottom))
85 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:83:47: error: cannot find type 'NSLayoutAnchor' in scope
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
84 | ((lhs.0, lhs.1), (rhs.top, -rhs.bottom))
85 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:83:86: error: cannot find type 'CGFloat' in scope
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
84 | ((lhs.0, lhs.1), (rhs.top, -rhs.bottom))
85 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:83:95: error: cannot find type 'CGFloat' in scope
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
84 | ((lhs.0, lhs.1), (rhs.top, -rhs.bottom))
85 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:81:22: error: cannot find type 'NSLayoutAnchor' in scope
79 | }
80 |
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:81:59: error: cannot find type 'NSLayoutAnchor' in scope
79 | }
80 |
81 | public func + (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
82 | rhs: BBEdgeInsetConvertible)
83 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:140:10: error: cannot find type 'NSLayoutAnchor' in scope
138 |
139 | public func -<AnchorType>(
140 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
141 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
142 | (lhs, (1, -rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:141:10: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 | lhs: NSLayoutAnchor<AnchorType>,
141 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
142 | (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:141:23: error: cannot find type 'NSLayoutAnchor' in scope
139 | public func -<AnchorType>(
140 | lhs: NSLayoutAnchor<AnchorType>,
141 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
142 | (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:141:52: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 | lhs: NSLayoutAnchor<AnchorType>,
141 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
142 | (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:141:61: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 | lhs: NSLayoutAnchor<AnchorType>,
141 | rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
142 | (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:165:23: error: cannot find type 'NSLayoutAnchor' in scope
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
166 | (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:165:59: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
166 | (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:165:68: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
166 | (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:164:11: error: cannot find type 'NSLayoutAnchor' in scope
162 |
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 | (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:164:47: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'CGFloat' in scope
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 | (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:164:56: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
| `- error: cannot find type 'CGFloat' in scope
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 | (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:165:10: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 | lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
166 | (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:11: error: cannot find type 'NSLayoutAnchor' in scope
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
79 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
80 | (lhs, rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:48: error: cannot find type 'NSLayoutAnchor' in scope
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
79 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
80 | (lhs, rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:6: error: cannot find type 'NSLayoutAnchor' in scope
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
79 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
80 | (lhs, rhs)
81 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:43: error: cannot find type 'NSLayoutAnchor' in scope
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
79 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
80 | (lhs, rhs)
81 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:23: error: cannot find type 'NSLayoutAnchor' in scope
73 | }
74 |
75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
77 | rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:60: error: cannot find type 'NSLayoutAnchor' in scope
73 | }
74 |
75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
77 | rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:6: error: cannot find type 'NSLayoutAnchor' in scope
74 |
75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:43: error: cannot find type 'NSLayoutAnchor' in scope
74 |
75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
77 | rhs: BBEdgeInsetConvertible)
78 | -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:65:10: error: cannot find type 'NSLayoutAnchor' in scope
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
66 | ((lhs.0, lhs.1), (-rhs.horizontal, -rhs.vertical))
67 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:65:47: error: cannot find type 'NSLayoutAnchor' in scope
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
66 | ((lhs.0, lhs.1), (-rhs.horizontal, -rhs.vertical))
67 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:65:86: error: cannot find type 'CGFloat' in scope
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
66 | ((lhs.0, lhs.1), (-rhs.horizontal, -rhs.vertical))
67 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:65:95: error: cannot find type 'CGFloat' in scope
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
66 | ((lhs.0, lhs.1), (-rhs.horizontal, -rhs.vertical))
67 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:63:22: error: cannot find type 'NSLayoutAnchor' in scope
61 | }
62 |
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:63:59: error: cannot find type 'NSLayoutAnchor' in scope
61 | }
62 |
63 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
64 | rhs: BBOffsetConvertible)
65 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:77:10: error: cannot find type 'NSLayoutAnchor' in scope
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
78 | ((lhs.0, lhs.1), (-rhs.left, rhs.right))
79 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:77:47: error: cannot find type 'NSLayoutAnchor' in scope
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
78 | ((lhs.0, lhs.1), (-rhs.left, rhs.right))
79 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:77:86: error: cannot find type 'CGFloat' in scope
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
78 | ((lhs.0, lhs.1), (-rhs.left, rhs.right))
79 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:77:95: error: cannot find type 'CGFloat' in scope
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
78 | ((lhs.0, lhs.1), (-rhs.left, rhs.right))
79 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:75:22: error: cannot find type 'NSLayoutAnchor' in scope
73 | }
74 |
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:75:59: error: cannot find type 'NSLayoutAnchor' in scope
73 | }
74 |
75 | public func - (lhs: (NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
76 | rhs: BBEdgeInsetConvertible)
77 | -> ((NSLayoutAnchor<NSLayoutXAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:89:10: error: cannot find type 'NSLayoutAnchor' in scope
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
90 | ((lhs.0, lhs.1), (-rhs.top, rhs.bottom))
91 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:89:47: error: cannot find type 'NSLayoutAnchor' in scope
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
90 | ((lhs.0, lhs.1), (-rhs.top, rhs.bottom))
91 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:89:86: error: cannot find type 'CGFloat' in scope
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
90 | ((lhs.0, lhs.1), (-rhs.top, rhs.bottom))
91 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:89:95: error: cannot find type 'CGFloat' in scope
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
90 | ((lhs.0, lhs.1), (-rhs.top, rhs.bottom))
91 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:87:22: error: cannot find type 'NSLayoutAnchor' in scope
85 | }
86 |
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:87:59: error: cannot find type 'NSLayoutAnchor' in scope
85 | }
86 |
87 | public func - (lhs: (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
88 | rhs: BBEdgeInsetConvertible)
89 | -> ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutYAxisAnchor>), (CGFloat, CGFloat)) {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:34:107: error: cannot find type 'NSLayoutConstraint' in scope
32 | }
33 |
34 | @discardableResult public func ==<View: BBAnchorable>(lhs: View, rhs: (View, BBEdgeInsetConvertible)) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
35 | lhs.sides == rhs.0.sides + rhs.1
36 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:38:107: error: cannot find type 'NSLayoutConstraint' in scope
36 | }
37 |
38 | @discardableResult public func <=<View: BBAnchorable>(lhs: View, rhs: (View, BBEdgeInsetConvertible)) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
39 | lhs.sides <= rhs.0.sides + rhs.1
40 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAnchorableViewOperators.swift:42:107: error: cannot find type 'NSLayoutConstraint' in scope
40 | }
41 |
42 | @discardableResult public func >=<View: BBAnchorable>(lhs: View, rhs: (View, BBEdgeInsetConvertible)) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | lhs.sides >= rhs.0.sides + rhs.1
44 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:30:10: error: cannot find type 'NSLayoutAnchor' in scope
28 |
29 | @discardableResult public func == <AnchorType: NSObject>(
30 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
31 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
32 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:31:10: error: cannot find type 'NSLayoutAnchor' in scope
29 | @discardableResult public func == <AnchorType: NSObject>(
30 | lhs: NSLayoutAnchor<AnchorType>,
31 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
32 | let constraint = lhs.constraint(equalTo: rhs)
33 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:31:41: error: cannot find type 'NSLayoutConstraint' in scope
29 | @discardableResult public func == <AnchorType: NSObject>(
30 | lhs: NSLayoutAnchor<AnchorType>,
31 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
32 | let constraint = lhs.constraint(equalTo: rhs)
33 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:29:48: error: cannot find type 'NSObject' in scope
27 | // MARK: - Single Anchor Constraint With Active Status
28 |
29 | @discardableResult public func == <AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
30 | lhs: NSLayoutAnchor<AnchorType>,
31 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:39:50: error: cannot find type 'NSLayoutConstraint' in scope
37 | @discardableResult public func == (
38 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
39 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
40 | let constraint = lhs.constraint(equalTo: rhs)
41 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:38:10: error: cannot find type 'NSLayoutAnchor' in scope
36 |
37 | @discardableResult public func == (
38 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
39 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
40 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:39:10: error: cannot find type 'NSLayoutAnchor' in scope
37 | @discardableResult public func == (
38 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
39 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
40 | let constraint = lhs.constraint(equalTo: rhs)
41 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:47:50: error: cannot find type 'NSLayoutConstraint' in scope
45 | @discardableResult public func == (
46 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
47 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | let constraint = lhs.constraint(equalTo: rhs)
49 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:46:10: error: cannot find type 'NSLayoutAnchor' in scope
44 |
45 | @discardableResult public func == (
46 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
47 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
48 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:47:10: error: cannot find type 'NSLayoutAnchor' in scope
45 | @discardableResult public func == (
46 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
47 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
48 | let constraint = lhs.constraint(equalTo: rhs)
49 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:55:48: error: cannot find type 'NSLayoutConstraint' in scope
53 | @discardableResult public func == (
54 | lhs: NSLayoutAnchor<NSLayoutDimension>,
55 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
56 | let constraint = lhs.constraint(equalTo: rhs)
57 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:54:10: error: cannot find type 'NSLayoutAnchor' in scope
52 |
53 | @discardableResult public func == (
54 | lhs: NSLayoutAnchor<NSLayoutDimension>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
55 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
56 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:55:10: error: cannot find type 'NSLayoutAnchor' in scope
53 | @discardableResult public func == (
54 | lhs: NSLayoutAnchor<NSLayoutDimension>,
55 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
56 | let constraint = lhs.constraint(equalTo: rhs)
57 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:64:10: error: cannot find type 'NSLayoutAnchor' in scope
62 |
63 | public func != <AnchorType: NSObject>(
64 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
65 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
66 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:65:10: error: cannot find type 'NSLayoutAnchor' in scope
63 | public func != <AnchorType: NSObject>(
64 | lhs: NSLayoutAnchor<AnchorType>,
65 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
66 | let constraint = lhs.constraint(equalTo: rhs)
67 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:65:41: error: cannot find type 'NSLayoutConstraint' in scope
63 | public func != <AnchorType: NSObject>(
64 | lhs: NSLayoutAnchor<AnchorType>,
65 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
66 | let constraint = lhs.constraint(equalTo: rhs)
67 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:63:29: error: cannot find type 'NSObject' in scope
61 | // MARK: - Single Anchor Constraint With Inactive Status
62 |
63 | public func != <AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
64 | lhs: NSLayoutAnchor<AnchorType>,
65 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:73:50: error: cannot find type 'NSLayoutConstraint' in scope
71 | @discardableResult public func != (
72 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
73 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
74 | let constraint = lhs.constraint(equalTo: rhs)
75 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:72:10: error: cannot find type 'NSLayoutAnchor' in scope
70 |
71 | @discardableResult public func != (
72 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
73 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
74 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:73:10: error: cannot find type 'NSLayoutAnchor' in scope
71 | @discardableResult public func != (
72 | lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
73 | rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
74 | let constraint = lhs.constraint(equalTo: rhs)
75 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:81:50: error: cannot find type 'NSLayoutConstraint' in scope
79 | @discardableResult public func != (
80 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
81 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
82 | let constraint = lhs.constraint(equalTo: rhs)
83 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:80:10: error: cannot find type 'NSLayoutAnchor' in scope
78 |
79 | @discardableResult public func != (
80 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
81 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
82 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:81:10: error: cannot find type 'NSLayoutAnchor' in scope
79 | @discardableResult public func != (
80 | lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
81 | rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
82 | let constraint = lhs.constraint(equalTo: rhs)
83 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:89:48: error: cannot find type 'NSLayoutConstraint' in scope
87 | @discardableResult public func != (
88 | lhs: NSLayoutAnchor<NSLayoutDimension>,
89 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
90 | let constraint = lhs.constraint(equalTo: rhs)
91 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:88:10: error: cannot find type 'NSLayoutAnchor' in scope
86 |
87 | @discardableResult public func != (
88 | lhs: NSLayoutAnchor<NSLayoutDimension>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
89 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
90 | let constraint = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:89:10: error: cannot find type 'NSLayoutAnchor' in scope
87 | @discardableResult public func != (
88 | lhs: NSLayoutAnchor<NSLayoutDimension>,
89 | rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
90 | let constraint = lhs.constraint(equalTo: rhs)
91 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:98:10: error: cannot find type 'NSLayoutAnchor' in scope
96 |
97 | @discardableResult public func <=<AnchorType: NSObject>(
98 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
99 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
100 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:99:10: error: cannot find type 'NSLayoutAnchor' in scope
97 | @discardableResult public func <=<AnchorType: NSObject>(
98 | lhs: NSLayoutAnchor<AnchorType>,
99 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
100 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
101 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:99:41: error: cannot find type 'NSLayoutConstraint' in scope
97 | @discardableResult public func <=<AnchorType: NSObject>(
98 | lhs: NSLayoutAnchor<AnchorType>,
99 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
100 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
101 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:97:47: error: cannot find type 'NSObject' in scope
95 | // MARK: - Single Anchor Constraint With Relation And Active Status
96 |
97 | @discardableResult public func <=<AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
98 | lhs: NSLayoutAnchor<AnchorType>,
99 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:106:10: error: cannot find type 'NSLayoutAnchor' in scope
104 |
105 | @discardableResult public func >=<AnchorType: NSObject>(
106 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
107 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
108 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:107:10: error: cannot find type 'NSLayoutAnchor' in scope
105 | @discardableResult public func >=<AnchorType: NSObject>(
106 | lhs: NSLayoutAnchor<AnchorType>,
107 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
108 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
109 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:107:41: error: cannot find type 'NSLayoutConstraint' in scope
105 | @discardableResult public func >=<AnchorType: NSObject>(
106 | lhs: NSLayoutAnchor<AnchorType>,
107 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
108 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
109 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:105:47: error: cannot find type 'NSObject' in scope
103 | }
104 |
105 | @discardableResult public func >=<AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
106 | lhs: NSLayoutAnchor<AnchorType>,
107 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:116:10: error: cannot find type 'NSLayoutAnchor' in scope
114 |
115 | public func !<=<AnchorType>(
116 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
117 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
118 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:117:10: error: cannot find type 'NSLayoutAnchor' in scope
115 | public func !<=<AnchorType>(
116 | lhs: NSLayoutAnchor<AnchorType>,
117 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
118 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
119 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:117:41: error: cannot find type 'NSLayoutConstraint' in scope
115 | public func !<=<AnchorType>(
116 | lhs: NSLayoutAnchor<AnchorType>,
117 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
118 | let constraint = lhs.constraint(lessThanOrEqualTo: rhs)
119 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:124:10: error: cannot find type 'NSLayoutAnchor' in scope
122 |
123 | public func !>=<AnchorType>(
124 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
125 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
126 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:125:10: error: cannot find type 'NSLayoutAnchor' in scope
123 | public func !>=<AnchorType>(
124 | lhs: NSLayoutAnchor<AnchorType>,
125 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutAnchor' in scope
126 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
127 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:125:41: error: cannot find type 'NSLayoutConstraint' in scope
123 | public func !>=<AnchorType>(
124 | lhs: NSLayoutAnchor<AnchorType>,
125 | rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
126 | let constraint = lhs.constraint(greaterThanOrEqualTo: rhs)
127 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:147:23: error: cannot find type 'NSLayoutAnchor' in scope
145 | public func * (
146 | lhs: NSLayoutAnchor<NSLayoutDimension>,
147 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
148 | (lhs, (rhs, 0))
149 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:147:59: error: cannot find type 'CGFloat' in scope
145 | public func * (
146 | lhs: NSLayoutAnchor<NSLayoutDimension>,
147 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
148 | (lhs, (rhs, 0))
149 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:147:68: error: cannot find type 'CGFloat' in scope
145 | public func * (
146 | lhs: NSLayoutAnchor<NSLayoutDimension>,
147 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
148 | (lhs, (rhs, 0))
149 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:146:10: error: cannot find type 'NSLayoutAnchor' in scope
144 |
145 | public func * (
146 | lhs: NSLayoutAnchor<NSLayoutDimension>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
147 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
148 | (lhs, (rhs, 0))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:147:10: error: cannot find type 'CGFloat' in scope
145 | public func * (
146 | lhs: NSLayoutAnchor<NSLayoutDimension>,
147 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
148 | (lhs, (rhs, 0))
149 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:153:23: error: cannot find type 'NSLayoutAnchor' in scope
151 | public func / (
152 | lhs: NSLayoutAnchor<NSLayoutDimension>,
153 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'NSLayoutAnchor' in scope
154 | (lhs, (1/rhs, 0))
155 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:153:59: error: cannot find type 'CGFloat' in scope
151 | public func / (
152 | lhs: NSLayoutAnchor<NSLayoutDimension>,
153 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
154 | (lhs, (1/rhs, 0))
155 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:153:68: error: cannot find type 'CGFloat' in scope
151 | public func / (
152 | lhs: NSLayoutAnchor<NSLayoutDimension>,
153 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
154 | (lhs, (1/rhs, 0))
155 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:152:10: error: cannot find type 'NSLayoutAnchor' in scope
150 |
151 | public func / (
152 | lhs: NSLayoutAnchor<NSLayoutDimension>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
153 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
154 | (lhs, (1/rhs, 0))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:153:10: error: cannot find type 'CGFloat' in scope
151 | public func / (
152 | lhs: NSLayoutAnchor<NSLayoutDimension>,
153 | rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
| `- error: cannot find type 'CGFloat' in scope
154 | (lhs, (1/rhs, 0))
155 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:172:10: error: cannot find type 'NSLayoutAnchor' in scope
170 |
171 | @discardableResult public func ==<AnchorType: NSObject>(
172 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
174 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:173:11: error: cannot find type 'NSLayoutAnchor' in scope
171 | @discardableResult public func ==<AnchorType: NSObject>(
172 | lhs: NSLayoutAnchor<AnchorType>,
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
174 | -> NSLayoutConstraint {
175 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:173:40: error: cannot find type 'CGFloat' in scope
171 | @discardableResult public func ==<AnchorType: NSObject>(
172 | lhs: NSLayoutAnchor<AnchorType>,
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
174 | -> NSLayoutConstraint {
175 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:173:49: error: cannot find type 'CGFloat' in scope
171 | @discardableResult public func ==<AnchorType: NSObject>(
172 | lhs: NSLayoutAnchor<AnchorType>,
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
174 | -> NSLayoutConstraint {
175 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:174:8: error: cannot find type 'NSLayoutConstraint' in scope
172 | lhs: NSLayoutAnchor<AnchorType>,
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
174 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
175 | if let lhsAnchor = lhs as? NSLayoutDimension,
176 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:171:47: error: cannot find type 'NSObject' in scope
169 | // MARK: - Single Anchor Constraint With Constant, Relation And Active Status
170 |
171 | @discardableResult public func ==<AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
172 | lhs: NSLayoutAnchor<AnchorType>,
173 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:190:10: error: cannot find type 'NSLayoutAnchor' in scope
188 |
189 | @discardableResult public func <=<AnchorType: NSObject>(
190 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
192 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:191:11: error: cannot find type 'NSLayoutAnchor' in scope
189 | @discardableResult public func <=<AnchorType: NSObject>(
190 | lhs: NSLayoutAnchor<AnchorType>,
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
192 | -> NSLayoutConstraint {
193 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:191:40: error: cannot find type 'CGFloat' in scope
189 | @discardableResult public func <=<AnchorType: NSObject>(
190 | lhs: NSLayoutAnchor<AnchorType>,
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
192 | -> NSLayoutConstraint {
193 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:191:49: error: cannot find type 'CGFloat' in scope
189 | @discardableResult public func <=<AnchorType: NSObject>(
190 | lhs: NSLayoutAnchor<AnchorType>,
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
192 | -> NSLayoutConstraint {
193 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:192:8: error: cannot find type 'NSLayoutConstraint' in scope
190 | lhs: NSLayoutAnchor<AnchorType>,
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
192 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
193 | if let lhsAnchor = lhs as? NSLayoutDimension,
194 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:189:47: error: cannot find type 'NSObject' in scope
187 | }
188 |
189 | @discardableResult public func <=<AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
190 | lhs: NSLayoutAnchor<AnchorType>,
191 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:208:10: error: cannot find type 'NSLayoutAnchor' in scope
206 |
207 | @discardableResult public func >=<AnchorType: NSObject>(
208 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
210 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:209:11: error: cannot find type 'NSLayoutAnchor' in scope
207 | @discardableResult public func >=<AnchorType: NSObject>(
208 | lhs: NSLayoutAnchor<AnchorType>,
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
210 | -> NSLayoutConstraint {
211 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:209:40: error: cannot find type 'CGFloat' in scope
207 | @discardableResult public func >=<AnchorType: NSObject>(
208 | lhs: NSLayoutAnchor<AnchorType>,
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
210 | -> NSLayoutConstraint {
211 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:209:49: error: cannot find type 'CGFloat' in scope
207 | @discardableResult public func >=<AnchorType: NSObject>(
208 | lhs: NSLayoutAnchor<AnchorType>,
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
210 | -> NSLayoutConstraint {
211 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:210:8: error: cannot find type 'NSLayoutConstraint' in scope
208 | lhs: NSLayoutAnchor<AnchorType>,
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
210 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
211 | if let lhsAnchor = lhs as? NSLayoutDimension,
212 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:207:47: error: cannot find type 'NSObject' in scope
205 | }
206 |
207 | @discardableResult public func >=<AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
208 | lhs: NSLayoutAnchor<AnchorType>,
209 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:228:10: error: cannot find type 'NSLayoutAnchor' in scope
226 |
227 | public func != <AnchorType: NSObject>(
228 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:229:11: error: cannot find type 'NSLayoutAnchor' in scope
227 | public func != <AnchorType: NSObject>(
228 | lhs: NSLayoutAnchor<AnchorType>,
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
230 | -> NSLayoutConstraint {
231 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:229:40: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 | lhs: NSLayoutAnchor<AnchorType>,
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
230 | -> NSLayoutConstraint {
231 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:229:49: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 | lhs: NSLayoutAnchor<AnchorType>,
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
230 | -> NSLayoutConstraint {
231 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:230:8: error: cannot find type 'NSLayoutConstraint' in scope
228 | lhs: NSLayoutAnchor<AnchorType>,
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
231 | if let lhsAnchor = lhs as? NSLayoutDimension,
232 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:227:29: error: cannot find type 'NSObject' in scope
225 | // MARK: - Single Anchor Constraint With Constant, Relation And Inactive Status
226 |
227 | public func != <AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
228 | lhs: NSLayoutAnchor<AnchorType>,
229 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:246:10: error: cannot find type 'NSLayoutAnchor' in scope
244 |
245 | public func !<= <AnchorType: NSObject>(
246 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
248 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:247:11: error: cannot find type 'NSLayoutAnchor' in scope
245 | public func !<= <AnchorType: NSObject>(
246 | lhs: NSLayoutAnchor<AnchorType>,
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
248 | -> NSLayoutConstraint {
249 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:247:40: error: cannot find type 'CGFloat' in scope
245 | public func !<= <AnchorType: NSObject>(
246 | lhs: NSLayoutAnchor<AnchorType>,
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
248 | -> NSLayoutConstraint {
249 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:247:49: error: cannot find type 'CGFloat' in scope
245 | public func !<= <AnchorType: NSObject>(
246 | lhs: NSLayoutAnchor<AnchorType>,
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
248 | -> NSLayoutConstraint {
249 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:248:8: error: cannot find type 'NSLayoutConstraint' in scope
246 | lhs: NSLayoutAnchor<AnchorType>,
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
248 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
249 | if let lhsAnchor = lhs as? NSLayoutDimension,
250 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:245:30: error: cannot find type 'NSObject' in scope
243 | }
244 |
245 | public func !<= <AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
246 | lhs: NSLayoutAnchor<AnchorType>,
247 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:264:10: error: cannot find type 'NSLayoutAnchor' in scope
262 |
263 | public func !>= <AnchorType: NSObject>(
264 | lhs: NSLayoutAnchor<AnchorType>,
| `- error: cannot find type 'NSLayoutAnchor' in scope
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
266 | -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:265:11: error: cannot find type 'NSLayoutAnchor' in scope
263 | public func !>= <AnchorType: NSObject>(
264 | lhs: NSLayoutAnchor<AnchorType>,
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
266 | -> NSLayoutConstraint {
267 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:265:40: error: cannot find type 'CGFloat' in scope
263 | public func !>= <AnchorType: NSObject>(
264 | lhs: NSLayoutAnchor<AnchorType>,
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
266 | -> NSLayoutConstraint {
267 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:265:49: error: cannot find type 'CGFloat' in scope
263 | public func !>= <AnchorType: NSObject>(
264 | lhs: NSLayoutAnchor<AnchorType>,
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
266 | -> NSLayoutConstraint {
267 | if let lhsAnchor = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:266:8: error: cannot find type 'NSLayoutConstraint' in scope
264 | lhs: NSLayoutAnchor<AnchorType>,
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
266 | -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
267 | if let lhsAnchor = lhs as? NSLayoutDimension,
268 | let rhsAnchor = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:263:30: error: cannot find type 'NSObject' in scope
261 | }
262 |
263 | public func !>= <AnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
264 | lhs: NSLayoutAnchor<AnchorType>,
265 | rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:285:22: error: cannot find type 'NSLayoutConstraint' in scope
283 | @discardableResult public func == (
284 | lhs: NSLayoutDimension,
285 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
286 | let constraint = lhs.constraint(equalToConstant: rhs)
287 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:284:10: error: cannot find type 'NSLayoutDimension' in scope
282 |
283 | @discardableResult public func == (
284 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
285 | rhs: CGFloat) -> NSLayoutConstraint {
286 | let constraint = lhs.constraint(equalToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:285:10: error: cannot find type 'CGFloat' in scope
283 | @discardableResult public func == (
284 | lhs: NSLayoutDimension,
285 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
286 | let constraint = lhs.constraint(equalToConstant: rhs)
287 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:293:22: error: cannot find type 'NSLayoutConstraint' in scope
291 | @discardableResult public func <= (
292 | lhs: NSLayoutDimension,
293 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
294 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
295 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:292:10: error: cannot find type 'NSLayoutDimension' in scope
290 |
291 | @discardableResult public func <= (
292 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
293 | rhs: CGFloat) -> NSLayoutConstraint {
294 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:293:10: error: cannot find type 'CGFloat' in scope
291 | @discardableResult public func <= (
292 | lhs: NSLayoutDimension,
293 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
294 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
295 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:301:22: error: cannot find type 'NSLayoutConstraint' in scope
299 | @discardableResult public func >= (
300 | lhs: NSLayoutDimension,
301 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
302 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
303 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:300:10: error: cannot find type 'NSLayoutDimension' in scope
298 |
299 | @discardableResult public func >= (
300 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
301 | rhs: CGFloat) -> NSLayoutConstraint {
302 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:301:10: error: cannot find type 'CGFloat' in scope
299 | @discardableResult public func >= (
300 | lhs: NSLayoutDimension,
301 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
302 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
303 | constraint.isActive = true
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:311:22: error: cannot find type 'NSLayoutConstraint' in scope
309 | public func != (
310 | lhs: NSLayoutDimension,
311 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
312 | let constraint = lhs.constraint(equalToConstant: rhs)
313 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:310:10: error: cannot find type 'NSLayoutDimension' in scope
308 |
309 | public func != (
310 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
311 | rhs: CGFloat) -> NSLayoutConstraint {
312 | let constraint = lhs.constraint(equalToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:311:10: error: cannot find type 'CGFloat' in scope
309 | public func != (
310 | lhs: NSLayoutDimension,
311 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
312 | let constraint = lhs.constraint(equalToConstant: rhs)
313 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:319:22: error: cannot find type 'NSLayoutConstraint' in scope
317 | public func !<= (
318 | lhs: NSLayoutDimension,
319 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
320 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
321 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:318:10: error: cannot find type 'NSLayoutDimension' in scope
316 |
317 | public func !<= (
318 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
319 | rhs: CGFloat) -> NSLayoutConstraint {
320 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:319:10: error: cannot find type 'CGFloat' in scope
317 | public func !<= (
318 | lhs: NSLayoutDimension,
319 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
320 | let constraint = lhs.constraint(lessThanOrEqualToConstant: rhs)
321 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:327:22: error: cannot find type 'NSLayoutConstraint' in scope
325 | public func !>= (
326 | lhs: NSLayoutDimension,
327 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
328 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
329 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:326:10: error: cannot find type 'NSLayoutDimension' in scope
324 |
325 | public func !>= (
326 | lhs: NSLayoutDimension,
| `- error: cannot find type 'NSLayoutDimension' in scope
327 | rhs: CGFloat) -> NSLayoutConstraint {
328 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableOperators.swift:327:10: error: cannot find type 'CGFloat' in scope
325 | public func !>= (
326 | lhs: NSLayoutDimension,
327 | rhs: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'CGFloat' in scope
328 | let constraint = lhs.constraint(greaterThanOrEqualToConstant: rhs)
329 | constraint.isActive = false
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:22:12: error: cannot find type 'NSLayoutAnchor' in scope
20 | ThirdAnchorType: NSObject,
21 | FourthAnchorType: NSObject>(
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:22:45: error: cannot find type 'NSLayoutAnchor' in scope
20 | ThirdAnchorType: NSObject,
21 | FourthAnchorType: NSObject>(
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:23:6: error: cannot find type 'NSLayoutAnchor' in scope
21 | FourthAnchorType: NSObject>(
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:23:39: error: cannot find type 'NSLayoutAnchor' in scope
21 | FourthAnchorType: NSObject>(
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:24:12: error: cannot find type 'NSLayoutAnchor' in scope
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
26 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:24:45: error: cannot find type 'NSLayoutAnchor' in scope
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
26 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:25:6: error: cannot find type 'NSLayoutAnchor' in scope
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
26 | -> [NSLayoutConstraint] {
27 | [lhs.0.0 == rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:25:39: error: cannot find type 'NSLayoutAnchor' in scope
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
26 | -> [NSLayoutConstraint] {
27 | [lhs.0.0 == rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:26:9: error: cannot find type 'NSLayoutConstraint' in scope
24 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
25 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
26 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
27 | [lhs.0.0 == rhs.0.0,
28 | lhs.0.1 == rhs.0.1,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:18:22: error: cannot find type 'NSObject' in scope
16 |
17 | @discardableResult public func ==<
18 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
19 | SecondAnchorType: NSObject,
20 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:19:23: error: cannot find type 'NSObject' in scope
17 | @discardableResult public func ==<
18 | FirstAnchorType: NSObject,
19 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
20 | ThirdAnchorType: NSObject,
21 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:20:22: error: cannot find type 'NSObject' in scope
18 | FirstAnchorType: NSObject,
19 | SecondAnchorType: NSObject,
20 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
21 | FourthAnchorType: NSObject>(
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:21:23: error: cannot find type 'NSObject' in scope
19 | SecondAnchorType: NSObject,
20 | ThirdAnchorType: NSObject,
21 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
22 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
23 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:38:12: error: cannot find type 'NSLayoutAnchor' in scope
36 | ThirdAnchorType: NSObject,
37 | FourthAnchorType: NSObject>(
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:38:45: error: cannot find type 'NSLayoutAnchor' in scope
36 | ThirdAnchorType: NSObject,
37 | FourthAnchorType: NSObject>(
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:39:6: error: cannot find type 'NSLayoutAnchor' in scope
37 | FourthAnchorType: NSObject>(
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:39:39: error: cannot find type 'NSLayoutAnchor' in scope
37 | FourthAnchorType: NSObject>(
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:40:12: error: cannot find type 'NSLayoutAnchor' in scope
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
42 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:40:45: error: cannot find type 'NSLayoutAnchor' in scope
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
42 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:41:6: error: cannot find type 'NSLayoutAnchor' in scope
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
42 | -> [NSLayoutConstraint] {
43 | [lhs.0.0 <= rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:41:39: error: cannot find type 'NSLayoutAnchor' in scope
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
42 | -> [NSLayoutConstraint] {
43 | [lhs.0.0 <= rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:42:9: error: cannot find type 'NSLayoutConstraint' in scope
40 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
41 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
42 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | [lhs.0.0 <= rhs.0.0,
44 | lhs.0.1 <= rhs.0.1,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:34:22: error: cannot find type 'NSObject' in scope
32 |
33 | @discardableResult public func <=<
34 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
35 | SecondAnchorType: NSObject,
36 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:35:23: error: cannot find type 'NSObject' in scope
33 | @discardableResult public func <=<
34 | FirstAnchorType: NSObject,
35 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
36 | ThirdAnchorType: NSObject,
37 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:36:22: error: cannot find type 'NSObject' in scope
34 | FirstAnchorType: NSObject,
35 | SecondAnchorType: NSObject,
36 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
37 | FourthAnchorType: NSObject>(
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:37:23: error: cannot find type 'NSObject' in scope
35 | SecondAnchorType: NSObject,
36 | ThirdAnchorType: NSObject,
37 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
38 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
39 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:54:12: error: cannot find type 'NSLayoutAnchor' in scope
52 | ThirdAnchorType: NSObject,
53 | FourthAnchorType: NSObject>(
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:54:45: error: cannot find type 'NSLayoutAnchor' in scope
52 | ThirdAnchorType: NSObject,
53 | FourthAnchorType: NSObject>(
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:55:6: error: cannot find type 'NSLayoutAnchor' in scope
53 | FourthAnchorType: NSObject>(
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:55:39: error: cannot find type 'NSLayoutAnchor' in scope
53 | FourthAnchorType: NSObject>(
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:56:12: error: cannot find type 'NSLayoutAnchor' in scope
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
58 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:56:45: error: cannot find type 'NSLayoutAnchor' in scope
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
58 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:57:6: error: cannot find type 'NSLayoutAnchor' in scope
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
58 | -> [NSLayoutConstraint] {
59 | [lhs.0.0 >= rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:57:39: error: cannot find type 'NSLayoutAnchor' in scope
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
58 | -> [NSLayoutConstraint] {
59 | [lhs.0.0 >= rhs.0.0,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:58:9: error: cannot find type 'NSLayoutConstraint' in scope
56 | rhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
57 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)))
58 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
59 | [lhs.0.0 >= rhs.0.0,
60 | lhs.0.1 >= rhs.0.1,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:50:22: error: cannot find type 'NSObject' in scope
48 |
49 | @discardableResult public func >=<
50 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
51 | SecondAnchorType: NSObject,
52 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:51:23: error: cannot find type 'NSObject' in scope
49 | @discardableResult public func >=<
50 | FirstAnchorType: NSObject,
51 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
52 | ThirdAnchorType: NSObject,
53 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:52:22: error: cannot find type 'NSObject' in scope
50 | FirstAnchorType: NSObject,
51 | SecondAnchorType: NSObject,
52 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
53 | FourthAnchorType: NSObject>(
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:53:23: error: cannot find type 'NSObject' in scope
51 | SecondAnchorType: NSObject,
52 | ThirdAnchorType: NSObject,
53 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
54 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
55 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:90:12: error: cannot find type 'NSLayoutAnchor' in scope
88 | ThirdAnchorType: NSObject,
89 | FourthAnchorType: NSObject>(
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:90:45: error: cannot find type 'NSLayoutAnchor' in scope
88 | ThirdAnchorType: NSObject,
89 | FourthAnchorType: NSObject>(
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:91:6: error: cannot find type 'NSLayoutAnchor' in scope
89 | FourthAnchorType: NSObject>(
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:91:39: error: cannot find type 'NSLayoutAnchor' in scope
89 | FourthAnchorType: NSObject>(
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:92:13: error: cannot find type 'NSLayoutAnchor' in scope
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
94 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:92:46: error: cannot find type 'NSLayoutAnchor' in scope
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
94 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:93:6: error: cannot find type 'NSLayoutAnchor' in scope
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
94 | -> [NSLayoutConstraint] {
95 | [lhs.0.0 == rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:93:39: error: cannot find type 'NSLayoutAnchor' in scope
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
94 | -> [NSLayoutConstraint] {
95 | [lhs.0.0 == rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:94:9: error: cannot find type 'NSLayoutConstraint' in scope
92 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
93 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
94 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
95 | [lhs.0.0 == rhs.0.0.0 + rhs.1.top,
96 | lhs.0.1 == rhs.0.0.1 + rhs.1.left,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:86:22: error: cannot find type 'NSObject' in scope
84 |
85 | @discardableResult public func ==<
86 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
87 | SecondAnchorType: NSObject,
88 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:87:23: error: cannot find type 'NSObject' in scope
85 | @discardableResult public func ==<
86 | FirstAnchorType: NSObject,
87 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
88 | ThirdAnchorType: NSObject,
89 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:88:22: error: cannot find type 'NSObject' in scope
86 | FirstAnchorType: NSObject,
87 | SecondAnchorType: NSObject,
88 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
89 | FourthAnchorType: NSObject>(
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:89:23: error: cannot find type 'NSObject' in scope
87 | SecondAnchorType: NSObject,
88 | ThirdAnchorType: NSObject,
89 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
90 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
91 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:106:12: error: cannot find type 'NSLayoutAnchor' in scope
104 | ThirdAnchorType: NSObject,
105 | FourthAnchorType: NSObject>(
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:106:45: error: cannot find type 'NSLayoutAnchor' in scope
104 | ThirdAnchorType: NSObject,
105 | FourthAnchorType: NSObject>(
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:107:6: error: cannot find type 'NSLayoutAnchor' in scope
105 | FourthAnchorType: NSObject>(
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:107:39: error: cannot find type 'NSLayoutAnchor' in scope
105 | FourthAnchorType: NSObject>(
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:108:13: error: cannot find type 'NSLayoutAnchor' in scope
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
110 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:108:46: error: cannot find type 'NSLayoutAnchor' in scope
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
110 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:109:6: error: cannot find type 'NSLayoutAnchor' in scope
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
110 | -> [NSLayoutConstraint] {
111 | [lhs.0.0 <= rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:109:39: error: cannot find type 'NSLayoutAnchor' in scope
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
110 | -> [NSLayoutConstraint] {
111 | [lhs.0.0 <= rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:110:9: error: cannot find type 'NSLayoutConstraint' in scope
108 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
109 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
110 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
111 | [lhs.0.0 <= rhs.0.0.0 + rhs.1.top,
112 | lhs.0.1 <= rhs.0.0.1 + rhs.1.left,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:102:22: error: cannot find type 'NSObject' in scope
100 |
101 | @discardableResult public func <=<
102 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
103 | SecondAnchorType: NSObject,
104 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:103:23: error: cannot find type 'NSObject' in scope
101 | @discardableResult public func <=<
102 | FirstAnchorType: NSObject,
103 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
104 | ThirdAnchorType: NSObject,
105 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:104:22: error: cannot find type 'NSObject' in scope
102 | FirstAnchorType: NSObject,
103 | SecondAnchorType: NSObject,
104 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
105 | FourthAnchorType: NSObject>(
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:105:23: error: cannot find type 'NSObject' in scope
103 | SecondAnchorType: NSObject,
104 | ThirdAnchorType: NSObject,
105 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
106 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
107 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:122:12: error: cannot find type 'NSLayoutAnchor' in scope
120 | ThirdAnchorType: NSObject,
121 | FourthAnchorType: NSObject>(
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:122:45: error: cannot find type 'NSLayoutAnchor' in scope
120 | ThirdAnchorType: NSObject,
121 | FourthAnchorType: NSObject>(
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:123:6: error: cannot find type 'NSLayoutAnchor' in scope
121 | FourthAnchorType: NSObject>(
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:123:39: error: cannot find type 'NSLayoutAnchor' in scope
121 | FourthAnchorType: NSObject>(
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
| `- error: cannot find type 'NSLayoutAnchor' in scope
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:124:13: error: cannot find type 'NSLayoutAnchor' in scope
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
126 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:124:46: error: cannot find type 'NSLayoutAnchor' in scope
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
126 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:125:6: error: cannot find type 'NSLayoutAnchor' in scope
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
126 | -> [NSLayoutConstraint] {
127 | [lhs.0.0 >= rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:125:39: error: cannot find type 'NSLayoutAnchor' in scope
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
| `- error: cannot find type 'NSLayoutAnchor' in scope
126 | -> [NSLayoutConstraint] {
127 | [lhs.0.0 >= rhs.0.0.0 + rhs.1.top,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:126:9: error: cannot find type 'NSLayoutConstraint' in scope
124 | rhs: (((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
125 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)), BBEdgeInsetConvertible))
126 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
127 | [lhs.0.0 >= rhs.0.0.0 + rhs.1.top,
128 | lhs.0.1 >= rhs.0.0.1 + rhs.1.left,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:118:22: error: cannot find type 'NSObject' in scope
116 |
117 | @discardableResult public func >=<
118 | FirstAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
119 | SecondAnchorType: NSObject,
120 | ThirdAnchorType: NSObject,
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:119:23: error: cannot find type 'NSObject' in scope
117 | @discardableResult public func >=<
118 | FirstAnchorType: NSObject,
119 | SecondAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
120 | ThirdAnchorType: NSObject,
121 | FourthAnchorType: NSObject>(
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:120:22: error: cannot find type 'NSObject' in scope
118 | FirstAnchorType: NSObject,
119 | SecondAnchorType: NSObject,
120 | ThirdAnchorType: NSObject,
| `- error: cannot find type 'NSObject' in scope
121 | FourthAnchorType: NSObject>(
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:121:23: error: cannot find type 'NSObject' in scope
119 | SecondAnchorType: NSObject,
120 | ThirdAnchorType: NSObject,
121 | FourthAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
122 | lhs: ((NSLayoutAnchor<FirstAnchorType>, NSLayoutAnchor<SecondAnchorType>),
123 | (NSLayoutAnchor<ThirdAnchorType>, NSLayoutAnchor<FourthAnchorType>)),
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:18:11: error: cannot find type 'NSLayoutAnchor' in scope
16 |
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
20 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:18:43: error: cannot find type 'NSLayoutAnchor' in scope
16 |
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
20 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:19:11: error: cannot find type 'NSLayoutAnchor' in scope
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
20 | -> [NSLayoutConstraint] {
21 | [lhs.0 == rhs.0, lhs.1 == rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:19:43: error: cannot find type 'NSLayoutAnchor' in scope
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
20 | -> [NSLayoutConstraint] {
21 | [lhs.0 == rhs.0, lhs.1 == rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:20:9: error: cannot find type 'NSLayoutConstraint' in scope
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
20 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
21 | [lhs.0 == rhs.0, lhs.1 == rhs.1]
22 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:17:52: error: cannot find type 'NSObject' in scope
15 | // MARK: Double Anchor Constraint
16 |
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:17:79: error: cannot find type 'NSObject' in scope
15 | // MARK: Double Anchor Constraint
16 |
17 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
18 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
19 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:25:11: error: cannot find type 'NSLayoutAnchor' in scope
23 |
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
27 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:25:43: error: cannot find type 'NSLayoutAnchor' in scope
23 |
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
27 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:26:11: error: cannot find type 'NSLayoutAnchor' in scope
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
27 | -> [NSLayoutConstraint] {
28 | [lhs.0 <= rhs.0, lhs.1 <= rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:26:43: error: cannot find type 'NSLayoutAnchor' in scope
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
27 | -> [NSLayoutConstraint] {
28 | [lhs.0 <= rhs.0, lhs.1 <= rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:27:9: error: cannot find type 'NSLayoutConstraint' in scope
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
27 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | [lhs.0 <= rhs.0, lhs.1 <= rhs.1]
29 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:24:52: error: cannot find type 'NSObject' in scope
22 | }
23 |
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:24:79: error: cannot find type 'NSObject' in scope
22 | }
23 |
24 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
25 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
26 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:32:11: error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
34 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:32:43: error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
34 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:33:11: error: cannot find type 'NSLayoutAnchor' in scope
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
34 | -> [NSLayoutConstraint] {
35 | [lhs.0 >= rhs.0, lhs.1 >= rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:33:43: error: cannot find type 'NSLayoutAnchor' in scope
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
| `- error: cannot find type 'NSLayoutAnchor' in scope
34 | -> [NSLayoutConstraint] {
35 | [lhs.0 >= rhs.0, lhs.1 >= rhs.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:34:9: error: cannot find type 'NSLayoutConstraint' in scope
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
34 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
35 | [lhs.0 >= rhs.0, lhs.1 >= rhs.1]
36 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:31:52: error: cannot find type 'NSObject' in scope
29 | }
30 |
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:31:79: error: cannot find type 'NSObject' in scope
29 | }
30 |
31 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
32 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
33 | rhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:41:9: error: cannot find type 'NSLayoutConstraint' in scope
39 |
40 | @discardableResult public func == (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
41 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
42 | [lhs.0 == rhs.width, lhs.1 == rhs.height]
43 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:40:42: error: cannot find type 'NSLayoutDimension' in scope
38 | // MARK: - Double Dimension Anchor Constraint With Constant And Relation
39 |
40 | @discardableResult public func == (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
41 | -> [NSLayoutConstraint] {
42 | [lhs.0 == rhs.width, lhs.1 == rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:40:61: error: cannot find type 'NSLayoutDimension' in scope
38 | // MARK: - Double Dimension Anchor Constraint With Constant And Relation
39 |
40 | @discardableResult public func == (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
41 | -> [NSLayoutConstraint] {
42 | [lhs.0 == rhs.width, lhs.1 == rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:46:9: error: cannot find type 'NSLayoutConstraint' in scope
44 |
45 | @discardableResult public func <= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
46 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
47 | [lhs.0 <= rhs.width, lhs.1 <= rhs.height]
48 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:45:42: error: cannot find type 'NSLayoutDimension' in scope
43 | }
44 |
45 | @discardableResult public func <= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
46 | -> [NSLayoutConstraint] {
47 | [lhs.0 <= rhs.width, lhs.1 <= rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:45:61: error: cannot find type 'NSLayoutDimension' in scope
43 | }
44 |
45 | @discardableResult public func <= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
46 | -> [NSLayoutConstraint] {
47 | [lhs.0 <= rhs.width, lhs.1 <= rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:51:9: error: cannot find type 'NSLayoutConstraint' in scope
49 |
50 | @discardableResult public func >= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
51 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
52 | [lhs.0 >= rhs.width, lhs.1 >= rhs.height]
53 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:50:42: error: cannot find type 'NSLayoutDimension' in scope
48 | }
49 |
50 | @discardableResult public func >= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
51 | -> [NSLayoutConstraint] {
52 | [lhs.0 >= rhs.width, lhs.1 >= rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:50:61: error: cannot find type 'NSLayoutDimension' in scope
48 | }
49 |
50 | @discardableResult public func >= (lhs: (NSLayoutDimension, NSLayoutDimension), rhs: BBSizeConvertible)
| `- error: cannot find type 'NSLayoutDimension' in scope
51 | -> [NSLayoutConstraint] {
52 | [lhs.0 >= rhs.width, lhs.1 >= rhs.height]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:96:11: error: cannot find type 'NSLayoutAnchor' in scope
94 |
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
98 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:96:43: error: cannot find type 'NSLayoutAnchor' in scope
94 |
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
98 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:97:12: error: cannot find type 'NSLayoutAnchor' in scope
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
98 | -> [NSLayoutConstraint] {
99 | [lhs.0 == rhs.0.0 + rhs.1.0, lhs.1 == rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:97:44: error: cannot find type 'NSLayoutAnchor' in scope
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
98 | -> [NSLayoutConstraint] {
99 | [lhs.0 == rhs.0.0 + rhs.1.0, lhs.1 == rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:97:79: error: cannot find type 'CGFloat' in scope
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
98 | -> [NSLayoutConstraint] {
99 | [lhs.0 == rhs.0.0 + rhs.1.0, lhs.1 == rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:97:88: error: cannot find type 'CGFloat' in scope
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
98 | -> [NSLayoutConstraint] {
99 | [lhs.0 == rhs.0.0 + rhs.1.0, lhs.1 == rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:98:9: error: cannot find type 'NSLayoutConstraint' in scope
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
98 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
99 | [lhs.0 == rhs.0.0 + rhs.1.0, lhs.1 == rhs.0.1 + rhs.1.1]
100 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:95:52: error: cannot find type 'NSObject' in scope
93 | // MARK: - Double Anchor Constraint With Constant And Relation
94 |
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:95:79: error: cannot find type 'NSObject' in scope
93 | // MARK: - Double Anchor Constraint With Constant And Relation
94 |
95 | @discardableResult public func == <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
96 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
97 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:103:11: error: cannot find type 'NSLayoutAnchor' in scope
101 |
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
105 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:103:43: error: cannot find type 'NSLayoutAnchor' in scope
101 |
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
105 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:104:12: error: cannot find type 'NSLayoutAnchor' in scope
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
105 | -> [NSLayoutConstraint] {
106 | [lhs.0 <= rhs.0.0 + rhs.1.0, lhs.1 <= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:104:44: error: cannot find type 'NSLayoutAnchor' in scope
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
105 | -> [NSLayoutConstraint] {
106 | [lhs.0 <= rhs.0.0 + rhs.1.0, lhs.1 <= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:104:79: error: cannot find type 'CGFloat' in scope
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
105 | -> [NSLayoutConstraint] {
106 | [lhs.0 <= rhs.0.0 + rhs.1.0, lhs.1 <= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:104:88: error: cannot find type 'CGFloat' in scope
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
105 | -> [NSLayoutConstraint] {
106 | [lhs.0 <= rhs.0.0 + rhs.1.0, lhs.1 <= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:105:9: error: cannot find type 'NSLayoutConstraint' in scope
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
105 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
106 | [lhs.0 <= rhs.0.0 + rhs.1.0, lhs.1 <= rhs.0.1 + rhs.1.1]
107 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:102:52: error: cannot find type 'NSObject' in scope
100 | }
101 |
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:102:79: error: cannot find type 'NSObject' in scope
100 | }
101 |
102 | @discardableResult public func <= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
103 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
104 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:110:11: error: cannot find type 'NSLayoutAnchor' in scope
108 |
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
112 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:110:43: error: cannot find type 'NSLayoutAnchor' in scope
108 |
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
| `- error: cannot find type 'NSLayoutAnchor' in scope
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
112 | -> [NSLayoutConstraint] {
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:111:12: error: cannot find type 'NSLayoutAnchor' in scope
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
112 | -> [NSLayoutConstraint] {
113 | [lhs.0 >= rhs.0.0 + rhs.1.0, lhs.1 >= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:111:44: error: cannot find type 'NSLayoutAnchor' in scope
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'NSLayoutAnchor' in scope
112 | -> [NSLayoutConstraint] {
113 | [lhs.0 >= rhs.0.0 + rhs.1.0, lhs.1 >= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:111:79: error: cannot find type 'CGFloat' in scope
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
112 | -> [NSLayoutConstraint] {
113 | [lhs.0 >= rhs.0.0 + rhs.1.0, lhs.1 >= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:111:88: error: cannot find type 'CGFloat' in scope
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
| `- error: cannot find type 'CGFloat' in scope
112 | -> [NSLayoutConstraint] {
113 | [lhs.0 >= rhs.0.0 + rhs.1.0, lhs.1 >= rhs.0.1 + rhs.1.1]
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:112:9: error: cannot find type 'NSLayoutConstraint' in scope
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
112 | -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
113 | [lhs.0 >= rhs.0.0 + rhs.1.0, lhs.1 >= rhs.0.1 + rhs.1.1]
114 | }
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:109:52: error: cannot find type 'NSObject' in scope
107 | }
108 |
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/AutoLayoutProxy/BBOperators/BBAutoLayoutableTupleOperators.swift:109:79: error: cannot find type 'NSObject' in scope
107 | }
108 |
109 | @discardableResult public func >= <LeftAnchorType: NSObject, RightAnchorType: NSObject>(
| `- error: cannot find type 'NSObject' in scope
110 | lhs: (NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>),
111 | rhs: ((NSLayoutAnchor<LeftAnchorType>, NSLayoutAnchor<RightAnchorType>), (CGFloat, CGFloat)))
BUILD FAILURE 6.1 android