Build Information
Successful build of Geometria, reference main (c99025
), with Swift 6.0 for Linux on 11 Dec 2024 21:05:52 UTC.
Swift 6 data race errors: 3
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[150/279] Compiling Geometria LineMultiplicative.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[151/279] Compiling Geometria LineReal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[152/279] Compiling Geometria LineSigned.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[153/279] Compiling Geometria LineType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[154/279] Compiling Geometria LineIntersectablePlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[155/279] Compiling Geometria PlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[156/279] Compiling Geometria PointProjectablePlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[157/279] Compiling Geometria AdditiveRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[158/279] Compiling Geometria ConstructableRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[159/279] Compiling Geometria DivisibleRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[160/279] Compiling Geometria RectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[161/279] Compiling Geometria SelfIntersectableRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[162/279] Compiling Geometria VectorAdditive.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[163/279] Compiling Geometria VectorComparable.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[164/279] Compiling Geometria VectorDivisible.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[165/298] Compiling Geometria Line2Signed.swift
[166/298] Compiling Geometria Line2Type.swift
[167/298] Compiling Geometria PlaneIntersectablePlane2Type.swift
[168/298] Compiling Geometria ConstructableRectangleType+2D.swift
[169/298] Compiling Geometria DivisibleRectangleType+2D.swift
[170/298] Compiling Geometria RectangleType+2D.swift
[171/298] Compiling Geometria Vector2Additive.swift
[172/298] Compiling Geometria Vector2FloatingPoint.swift
[173/298] Compiling Geometria Vector2Multiplicative.swift
[174/298] Compiling Geometria Vector2Real.swift
[175/298] Compiling Geometria Vector2Signed.swift
[176/298] Compiling Geometria Vector2Type.swift
[177/298] Compiling Geometria Ray2.swift
[178/298] Compiling Geometria Rectangle2.swift
[179/298] Compiling Geometria RoundRectangle2.swift
[180/298] Compiling Geometria SIMD2+Double.swift
[181/298] Compiling Geometria Square2.swift
[182/298] Compiling Geometria Stadium2.swift
[183/298] Compiling Geometria Triangle2.swift
[184/298] Compiling Geometria LineSegment.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[185/298] Compiling Geometria NCapsule.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[186/298] Compiling Geometria NRectangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[187/298] Compiling Geometria NSphere.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[188/298] Compiling Geometria NSquare.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[189/298] Compiling Geometria PairLineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[190/298] Compiling Geometria PointCloud.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[191/298] Compiling Geometria PointNormal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[192/298] Compiling Geometria PointNormalPlane.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[193/298] Compiling Geometria ProjectiveSpace.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[194/298] Compiling Geometria UnitVector.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[195/298] Compiling Geometria BoundableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[196/298] Compiling Geometria ConvexType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[197/298] Compiling Geometria GeometricType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[198/298] Compiling Geometria LineIntersectableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[199/298] Compiling Geometria PointProjectableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[200/298] Compiling Geometria SignedDistanceMeasurableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[201/298] Compiling Geometria VolumetricType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[202/298] Compiling Geometria DivisibleArithmetic.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[203/298] Compiling Geometria ProjectivePointNormalPlane3.swift
[204/298] Compiling Geometria Convex3Type.swift
[205/298] Compiling Geometria Line3IntersectableType.swift
[206/298] Compiling Geometria VolumetricType+3D.swift
[207/298] Compiling Geometria Line3FloatingPoint.swift
[208/298] Compiling Geometria Line3Type.swift
[209/298] Compiling Geometria Plane3Type.swift
[210/298] Compiling Geometria PlaneIntersectablePlane3Type.swift
[211/298] Compiling Geometria Vector3Additive.swift
[212/298] Compiling Geometria Vector3FloatingPoint.swift
[213/298] Compiling Geometria Vector3Multiplicative.swift
[214/298] Compiling Geometria Vector3Real.swift
[215/298] Compiling Geometria Vector3Type.swift
[216/298] Compiling Geometria Ray3.swift
[217/298] Compiling Geometria RotationMatrix3.swift
[218/298] Compiling Geometria RotationOrder3.swift
[219/298] Compiling Geometria SIMD3+Double.swift
[220/298] Compiling Geometria Sphere3.swift
[221/298] Compiling Geometria Torus3.swift
[222/298] Compiling Geometria AABB2.swift
[223/298] Compiling Geometria Circle2.swift
[224/298] Compiling Geometria CircleArc2.swift
[225/298] Compiling Geometria ClosedShape2Intersection.swift
[226/298] Compiling Geometria DirectionalRay2.swift
[227/298] Compiling Geometria EdgeInsets2.swift
[228/298] Compiling Geometria Ellipse2.swift
[229/298] Compiling Geometria Hyperplane2.swift
[230/298] Compiling Geometria Line2.swift
[231/298] Compiling Geometria LineIntersectionResult.swift
[232/298] Compiling Geometria LinePolygon2.swift
[233/298] Compiling Geometria LineSegment2.swift
[234/298] Compiling Geometria PointCloud2.swift
[235/298] Compiling Geometria PointNormalPlane2.swift
[236/298] Compiling Geometria Convex2Type.swift
[237/298] Compiling Geometria VolumetricType+2D.swift
[238/298] Compiling Geometria Line2FloatingPoint.swift
[239/298] Compiling Geometria Line2Multiplicative.swift
[240/298] Compiling Geometria Line2Real.swift
[241/298] Emitting module Geometria
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
40 | ///
41 | /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 | static let lineSegment: Self = Self(rawValue: 0b0000_0000)
| |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[242/298] Compiling Geometria Vector2+Double.swift
[243/298] Compiling Geometria Vector2+Float.swift
[244/298] Compiling Geometria Vector2.swift
[245/298] Compiling Geometria AABB3.swift
[246/298] Compiling Geometria Capsule3.swift
[247/298] Compiling Geometria Cube3.swift
[248/298] Compiling Geometria Cylinder3.swift
[249/298] Compiling Geometria DirectionalRay3.swift
[250/298] Compiling Geometria Disk3.swift
[251/298] Compiling Geometria Ellipse3.swift
[252/298] Compiling Geometria Hyperplane3.swift
[253/298] Compiling Geometria Line3.swift
[254/298] Compiling Geometria LineSegment3.swift
[255/298] Compiling Geometria Orientation3.swift
[256/298] Compiling Geometria PointCloud3.swift
[257/298] Compiling Geometria PointNormalPlane3.swift
[258/298] Compiling Geometria PlaneProjectiveSpace.swift
[259/298] Compiling Geometria SphereCoordinates.swift
[260/298] Compiling Geometria SphereProjectiveSpace.swift
[261/298] Compiling Geometria Triangle3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[262/298] Compiling Geometria Vector3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[263/298] Compiling Geometria Hyperplane4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[264/298] Compiling Geometria Vector4Additive.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[265/298] Compiling Geometria Vector4FloatingPoint.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[266/298] Compiling Geometria Vector4Type.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[267/298] Compiling Geometria SIMD4+Double.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[268/298] Compiling Geometria Vector4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[269/298] Compiling Geometria Angle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[270/298] Compiling Geometria AngleSweep.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[271/298] Compiling Geometria AABB.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[272/298] Compiling Geometria ConvexLineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[273/298] Compiling Geometria DirectionalRay.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[274/298] Compiling Geometria Ellipsoid.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[275/298] Compiling Geometria Hyperplane.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[276/298] Compiling Geometria Line.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[277/298] Compiling Geometria LineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[278/298] Compiling Geometria LineIntersectionPointNormal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[279/298] Compiling Geometria LinePolygon.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
28 | ///
29 | /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 | static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
| |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Category for a [geometric ray] line which has a starting
[280/298] Compiling Geometria VectorFloatingPoint.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[281/298] Compiling Geometria VectorMultiplicative.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[282/298] Compiling Geometria VectorReal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[283/298] Compiling Geometria VectorSigned.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[284/298] Compiling Geometria VectorTakeable.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[285/298] Compiling Geometria VectorType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[286/298] Compiling Geometria Ray.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[287/298] Compiling Geometria RoundNRectangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[288/298] Compiling Geometria Triangle+Coordinates.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[289/298] Compiling Geometria Triangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[290/298] Compiling Geometria Matrix2x2.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[291/298] Compiling Geometria Matrix3x2.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[292/298] Compiling Geometria Matrix3x3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[293/298] Compiling Geometria Matrix4x4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[294/298] Compiling Geometria MatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[295/298] Compiling Geometria SquareMatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[296/298] Compiling Geometria TransposableMatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[297/298] Compiling Geometria Comparable+Clamp.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[298/298] Compiling Geometria SignedNumeric+Sign.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// Represents the category for a `LineType`, specifying whether the end points
2 | /// of the line are open or closed.
3 | public struct LineCategory: RawRepresentable, Hashable {
| `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
4 | private static let startOpenBit = 0b0000_0001
5 | private static let endOpenBit = 0b0000_0010
:
34 | ///
35 | /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 | static let ray: Self = Self(rawValue: endOpenBit)
| |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Category for a [line segment] that define a closed interval with a start
[300/307] Compiling GeometriaAlgorithms QuadTree.swift
[301/307] Compiling GeometriaAlgorithms PointCloud2.swift
[302/307] Emitting module GeometriaAlgorithms
[303/307] Compiling GeometriaAlgorithms Ellipse2.swift
[304/307] Compiling GeometriaAlgorithms SpatialTreeType.swift
[305/307] Compiling GeometriaAlgorithms SpatialTree.swift
[306/307] Compiling GeometriaAlgorithms Octree.swift
[307/307] Compiling GeometriaAlgorithms KDTree.swift
[309/332] Compiling GeometriaClipping ParametricClipGeometry.swift
[310/332] Compiling GeometriaClipping ParametricSimplex.swift
[311/332] Compiling GeometriaClipping FloatingPoint+Ext.swift
[312/335] Compiling GeometriaClipping OrderedSet+Ext.swift
[313/335] Compiling GeometriaClipping Set+Ext.swift
[314/335] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[315/335] Compiling GeometriaClipping LinePolygon2Parametric.swift
[316/335] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[317/335] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[318/335] Compiling GeometriaClipping Boolean2Parametric.swift
[319/335] Compiling GeometriaClipping Parametric2Simplex.swift
[320/335] Compiling GeometriaClipping ParametricClip2Geometry.swift
[321/335] Compiling GeometriaClipping ParametricClip2Intersection.swift
[322/335] Compiling GeometriaClipping CircleArc2Simplex.swift
[323/335] Compiling GeometriaClipping LineSegment2Simplex.swift
[324/335] Compiling GeometriaClipping Union2Parametric.swift
[325/335] Compiling GeometriaClipping Capsule2Parametric.swift
[326/335] Compiling GeometriaClipping Circle2Parametric.swift
[327/335] Compiling GeometriaClipping Compound2Periodic.swift
[328/335] Compiling GeometriaClipping ContourManager.swift
[329/335] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[330/335] Compiling GeometriaClipping Intersection2Parametric.swift
[331/335] Compiling GeometriaClipping Subtraction2Parametric.swift
[332/335] Compiling GeometriaClipping Simplex2Graph.swift
[333/335] Compiling GeometriaClipping Parametric2Contour.swift
[334/335] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[335/335] Emitting module GeometriaClipping
[337/352] Compiling TestCommons GeometriaClipping+Visualizable.swift
[338/352] Compiling TestCommons TestFixture+AssertionWrapper.swift
[339/354] Emitting module TestCommons
[340/354] Compiling TestCommons MersenneTwister+Geometria.swift
[341/354] Compiling TestCommons MersenneTwister.swift
[342/354] Compiling TestCommons MiniGraphviz+Clipping.swift
[343/354] Compiling TestCommons P5Printer+Clipping.swift
[344/354] Compiling TestCommons ConsolePrintBuffer.swift
[345/354] Compiling TestCommons ConsolePrintTarget.swift
[346/354] Compiling TestCommons P5Printer.swift
[347/354] Compiling TestCommons Geometria+Visualizable.swift
[348/354] Compiling TestCommons StandardOutputConsolePrintTarget.swift
[349/354] Compiling TestCommons StringBufferConsolePrintTarget.swift
[350/354] Compiling TestCommons Assertions.swift
[351/354] Compiling TestCommons ConsolePrintBuffer+Clipping.swift
[352/354] Compiling TestCommons Console+Colors.swift
[353/354] Compiling TestCommons TestFixture+Clipping.swift
[354/354] Compiling TestCommons TestFixture.swift
Build complete! (53.79s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-numerics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-numerics.git"
},
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "minip5printer",
"requirement" : {
"exact" : [
"0.0.2"
]
},
"type" : "sourceControl",
"url" : "https://github.com/LuizZak/MiniP5Printer.git"
},
{
"identity" : "minidigraph",
"requirement" : {
"exact" : [
"0.8.1"
]
},
"type" : "sourceControl",
"url" : "https://github.com/LuizZak/MiniDigraph.git"
},
{
"identity" : "minigraphviz",
"requirement" : {
"exact" : [
"0.1.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/LuizZak/MiniGraphviz.git"
}
],
"manifest_display_name" : "Geometria",
"name" : "Geometria",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Geometria",
"targets" : [
"Geometria"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "GeometriaAlgorithms",
"targets" : [
"GeometriaAlgorithms"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "GeometriaClipping",
"targets" : [
"GeometriaClipping"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TestCommons",
"module_type" : "SwiftTarget",
"name" : "TestCommons",
"path" : "Sources/TestCommons",
"product_dependencies" : [
"MiniP5Printer",
"MiniGraphviz"
],
"sources" : [
"Assertions.swift",
"Console+Clipping/ConsolePrintBuffer+Clipping.swift",
"Console/Console+Colors.swift",
"Console/ConsolePrintBuffer.swift",
"Console/ConsolePrintTarget.swift",
"Console/StandardOutputConsolePrintTarget.swift",
"Console/StringBufferConsolePrintTarget.swift",
"MersenneTwister+Geometria.swift",
"MersenneTwister.swift",
"MiniGraphviz+Clipping.swift",
"P5Printer+Clipping.swift",
"P5Printer.swift",
"TestFixture/Geometria+Visualizable.swift",
"TestFixture/GeometriaClipping+Visualizable.swift",
"TestFixture/TestFixture+AssertionWrapper.swift",
"TestFixture/TestFixture+Clipping.swift",
"TestFixture/TestFixture.swift"
],
"target_dependencies" : [
"Geometria",
"GeometriaAlgorithms",
"GeometriaClipping"
],
"type" : "library"
},
{
"c99name" : "GeometriaTests",
"module_type" : "SwiftTarget",
"name" : "GeometriaTests",
"path" : "Tests/GeometriaTests",
"sources" : [
"2D/AABB2Tests.swift",
"2D/Circle2Tests.swift",
"2D/CircleArc2Tests.swift",
"2D/DirectionalRay2Tests.swift",
"2D/EdgeInsets2Tests.swift",
"2D/Ellipse2Tests.swift",
"2D/Hyperplane2Tests.swift",
"2D/Line2Tests.swift",
"2D/LinePolygon2Tests.swift",
"2D/LineSegment2Tests.swift",
"2D/Protocols/BaseGeometry/VolumetricType+2DTests.swift",
"2D/Protocols/Line/Line2FloatingPointTests.swift",
"2D/Protocols/Line/Line2RealTests.swift",
"2D/Protocols/Line/Line2SignedTests.swift",
"2D/Protocols/Plane/PlaneIntersectablePlane2TypeTests.swift",
"2D/Protocols/Rectangle/ConstructableRectangleType+2DTests.swift",
"2D/Protocols/Rectangle/DivisibleRectangleType+2DTests.swift",
"2D/Protocols/Rectangle/RectangleType+2DTests.swift",
"2D/Protocols/Vector/Vector2FloatingPointTests.swift",
"2D/Protocols/Vector/Vector2MultiplicativeTests.swift",
"2D/Protocols/Vector/Vector2TypeTests.swift",
"2D/Ray2Tests.swift",
"2D/Rectangle2Tests.swift",
"2D/RoundRectangle2Tests.swift",
"2D/SIMD/SIMD2+DoubleTests.swift",
"2D/Square2Tests.swift",
"2D/Triangle2Tests.swift",
"2D/Vector2+DoubleTests.swift",
"2D/Vector2+FloatTests.swift",
"2D/Vector2Tests.swift",
"3D/Capsule3Tests.swift",
"3D/Cube3Tests.swift",
"3D/Cylinder3Tests.swift",
"3D/DirectionalRay3Tests.swift",
"3D/Disk3Tests.swift",
"3D/Ellipse3Tests.swift",
"3D/Hyperplane3Tests.swift",
"3D/Line3Tests.swift",
"3D/LineSegment3Tests.swift",
"3D/ProjectivePointNormalPlane3Tests.swift",
"3D/Protocols/BaseGeometry/VolumetricType+3DTests.swift",
"3D/Protocols/Line/Line3FloatingPointTests.swift",
"3D/Protocols/Plane/PlaneIntersectablePlane3TypeTests.swift",
"3D/Protocols/Vector/Vector3AdditiveTests.swift",
"3D/Protocols/Vector/Vector3FloatingPointTests.swift",
"3D/Protocols/Vector/Vector3MultiplicativeTests.swift",
"3D/Protocols/Vector/Vector3TypeTests.swift",
"3D/Ray3Tests.swift",
"3D/RotationMatrix3Tests.swift",
"3D/SIMD/SIMD3+DoubleTests.swift",
"3D/Sphere3Tests.swift",
"3D/Torus3Tests.swift",
"3D/Triangle3Tests.swift",
"3D/Vector3Tests.swift",
"4D/Protocols/Vector/Vector4AdditiveTests.swift",
"4D/Protocols/Vector/Vector4FloatingPointTests.swift",
"4D/Protocols/Vector/Vector4TypeTests.swift",
"4D/SIMD/SIMD4+DoubleTests.swift",
"4D/Vector4Tests.swift",
"Angles/AngleSweepTests.swift",
"Angles/AngleTests.swift",
"Generalized/AABBTests.swift",
"Generalized/ConvexLineIntersectionTests.swift",
"Generalized/DirectionalRayTests.swift",
"Generalized/EllipsoidTests.swift",
"Generalized/HyperplaneTests.swift",
"Generalized/LinePolygonTests.swift",
"Generalized/LineSegmentTests.swift",
"Generalized/LineTests.swift",
"Generalized/NCapsuleTests.swift",
"Generalized/NRectangleTests.swift",
"Generalized/NSphereTests.swift",
"Generalized/NSquareTests.swift",
"Generalized/PointCloudTests.swift",
"Generalized/PointNormalPlaneTests.swift",
"Generalized/PointNormalTests.swift",
"Generalized/Property Wrappers/UnitVectorTests.swift",
"Generalized/Protocols/Geometry/PointProjectableTypeTests.swift",
"Generalized/Protocols/Geometry/VolumetricTypeTests.swift",
"Generalized/Protocols/Line/LineCategoryTests.swift",
"Generalized/Protocols/Line/LineDivisibleTests.swift",
"Generalized/Protocols/Line/LineFloatingPointTests.swift",
"Generalized/Protocols/Plane/LineIntersectablePlaneTypeTests.swift",
"Generalized/Protocols/Plane/PointProjectablePlaneTypeTests.swift",
"Generalized/Protocols/Rectangle/AdditiveRectangleTypeTests.swift",
"Generalized/Protocols/Rectangle/ConstructableRectangleTypeTests.swift",
"Generalized/Protocols/Rectangle/DivisibleRectangleTypeTests.swift",
"Generalized/Protocols/Vector/VectorAdditiveTests.swift",
"Generalized/Protocols/Vector/VectorComparableTests.swift",
"Generalized/Protocols/Vector/VectorDivisibleTests.swift",
"Generalized/Protocols/Vector/VectorFloatingPointTests.swift",
"Generalized/Protocols/Vector/VectorMultiplicativeTests.swift",
"Generalized/Protocols/Vector/VectorSignedTests.swift",
"Generalized/Protocols/Vector/VectorTakeableTests.swift",
"Generalized/RayTests.swift",
"Generalized/RoundNRectangleTests.swift",
"Generalized/Triangle+CoordinatesTests.swift",
"Generalized/TriangleTests.swift",
"Matrices/Matrix2x2Tests.swift",
"Matrices/Matrix3x2Tests.swift",
"Matrices/Matrix3x3Tests.swift",
"Matrices/Matrix4x4Tests.swift",
"Matrices/Protocols/MatrixTypeTests.swift",
"PerformanceTests.swift",
"Utils/Comparable+ClampTests.swift",
"Utils/SignedNumeric+SignTests.swift"
],
"target_dependencies" : [
"Geometria",
"TestCommons"
],
"type" : "test"
},
{
"c99name" : "GeometriaClippingTests",
"module_type" : "SwiftTarget",
"name" : "GeometriaClippingTests",
"path" : "Tests/GeometriaClippingTests",
"product_dependencies" : [
"Numerics"
],
"sources" : [
"2D/Boolean/ContourManagerTests.swift",
"2D/Boolean/ExclusiveDisjunction2ParametricTests.swift",
"2D/Boolean/Intersection2ParametricTests.swift",
"2D/Boolean/Subtraction2ParametricTests.swift",
"2D/Boolean/Union2ParametricTests.swift",
"2D/Geometry/Capsule2ParametricTests.swift",
"2D/Geometry/Circle2ParametricTests.swift",
"2D/Geometry/Compound2ParametricTests.swift",
"2D/Geometry/LinePolygon2ParametricTests.swift",
"2D/Graph/Simplex2Graph+CreationTests.swift",
"2D/Parametric2ContourTests.swift",
"2D/Parametric2GeometrySimplexTests.swift",
"2D/Protocols/ParametricClip2GeometryTests.swift",
"2D/Simplexes/CircleArc2SimplexTests.swift",
"2D/Simplexes/LineSegment2SimplexTests.swift",
"TestSupport/Capsule2Parametric+Tests.swift",
"TestSupport/Circle2Parametric+Tests.swift",
"TestSupport/LinePolygon2Parametric+Tests.swift",
"Utils/OrderedSet+ExtTests.swift",
"Utils/Set+ExtTests.swift"
],
"target_dependencies" : [
"GeometriaClipping",
"TestCommons"
],
"type" : "test"
},
{
"c99name" : "GeometriaClipping",
"module_type" : "SwiftTarget",
"name" : "GeometriaClipping",
"path" : "Sources/GeometriaClipping",
"product_dependencies" : [
"Numerics",
"MiniDigraph",
"OrderedCollections"
],
"product_memberships" : [
"GeometriaClipping"
],
"sources" : [
"2D/Boolean/ContourManager.swift",
"2D/Boolean/ExclusiveDisjunction2Parametric.swift",
"2D/Boolean/Intersection2Parametric.swift",
"2D/Boolean/Subtraction2Parametric.swift",
"2D/Boolean/Union2Parametric.swift",
"2D/Geometry/Capsule2Parametric.swift",
"2D/Geometry/Circle2Parametric.swift",
"2D/Geometry/Compound2Periodic.swift",
"2D/Geometry/LinePolygon2Parametric.swift",
"2D/Graph/Simplex2Graph+Creation.swift",
"2D/Graph/Simplex2Graph+Recombining.swift",
"2D/Graph/Simplex2Graph.swift",
"2D/Parametric2Contour.swift",
"2D/Parametric2GeometrySimplex.swift",
"2D/Protocols/Boolean/Boolean2Parametric.swift",
"2D/Protocols/Parametric2Simplex.swift",
"2D/Protocols/ParametricClip2Geometry.swift",
"2D/Protocols/ParametricClip2Intersection.swift",
"2D/Simplexes/CircleArc2Simplex.swift",
"2D/Simplexes/LineSegment2Simplex.swift",
"Generalized/Protocols/ParametricClipGeometry.swift",
"Generalized/Protocols/ParametricSimplex.swift",
"Utils/FloatingPoint+Ext.swift",
"Utils/OrderedSet+Ext.swift",
"Utils/Set+Ext.swift",
"Utils/Vector2FloatingPoint+Ext.swift"
],
"target_dependencies" : [
"Geometria",
"GeometriaAlgorithms"
],
"type" : "library"
},
{
"c99name" : "GeometriaAlgorithmsTests",
"module_type" : "SwiftTarget",
"name" : "GeometriaAlgorithmsTests",
"path" : "Tests/GeometriaAlgorithmsTests",
"product_dependencies" : [
"Numerics"
],
"sources" : [
"2D/Ellipse2Tests.swift",
"2D/PointCloud2Tests.swift",
"SpatialPartitioning/KDTree/KDTreeTests.swift",
"SpatialPartitioning/SpatialTree/SpatialTreeTests.swift",
"TestUtils.swift",
"TestUtils/MersenneTwister+Geometria.swift",
"TestUtils/MersenneTwister.swift",
"TestUtils/SequenceAsserter.swift"
],
"target_dependencies" : [
"GeometriaAlgorithms",
"TestCommons"
],
"type" : "test"
},
{
"c99name" : "GeometriaAlgorithms",
"module_type" : "SwiftTarget",
"name" : "GeometriaAlgorithms",
"path" : "Sources/GeometriaAlgorithms",
"product_dependencies" : [
"Numerics"
],
"product_memberships" : [
"GeometriaAlgorithms",
"GeometriaClipping"
],
"sources" : [
"2D/Ellipse2.swift",
"2D/PointCloud2.swift",
"2D/SpatialPartitioning/QuadTree.swift",
"3D/SpatialPartitioning/Octree.swift",
"SpatialPartitioning/KDTree/KDTree.swift",
"SpatialPartitioning/SpatialTree/Protocols/SpatialTreeType.swift",
"SpatialPartitioning/SpatialTree/SpatialTree.swift"
],
"target_dependencies" : [
"Geometria"
],
"type" : "library"
},
{
"c99name" : "Geometria",
"module_type" : "SwiftTarget",
"name" : "Geometria",
"path" : "Sources/Geometria",
"product_dependencies" : [
"Numerics"
],
"product_memberships" : [
"Geometria",
"GeometriaAlgorithms",
"GeometriaClipping"
],
"sources" : [
"2D/AABB2.swift",
"2D/Circle2.swift",
"2D/CircleArc2.swift",
"2D/ClosedShape2Intersection.swift",
"2D/DirectionalRay2.swift",
"2D/EdgeInsets2.swift",
"2D/Ellipse2.swift",
"2D/Hyperplane2.swift",
"2D/Line2.swift",
"2D/LineIntersectionResult.swift",
"2D/LinePolygon2.swift",
"2D/LineSegment2.swift",
"2D/PointCloud2.swift",
"2D/PointNormalPlane2.swift",
"2D/Protocols/BaseGeometry/Convex2Type.swift",
"2D/Protocols/BaseGeometry/VolumetricType+2D.swift",
"2D/Protocols/Line/Line2FloatingPoint.swift",
"2D/Protocols/Line/Line2Multiplicative.swift",
"2D/Protocols/Line/Line2Real.swift",
"2D/Protocols/Line/Line2Signed.swift",
"2D/Protocols/Line/Line2Type.swift",
"2D/Protocols/Plane/PlaneIntersectablePlane2Type.swift",
"2D/Protocols/Rectangle/ConstructableRectangleType+2D.swift",
"2D/Protocols/Rectangle/DivisibleRectangleType+2D.swift",
"2D/Protocols/Rectangle/RectangleType+2D.swift",
"2D/Protocols/Vector/Vector2Additive.swift",
"2D/Protocols/Vector/Vector2FloatingPoint.swift",
"2D/Protocols/Vector/Vector2Multiplicative.swift",
"2D/Protocols/Vector/Vector2Real.swift",
"2D/Protocols/Vector/Vector2Signed.swift",
"2D/Protocols/Vector/Vector2Type.swift",
"2D/Ray2.swift",
"2D/Rectangle2.swift",
"2D/RoundRectangle2.swift",
"2D/SIMD/SIMD2+Double.swift",
"2D/Square2.swift",
"2D/Stadium2.swift",
"2D/Triangle2.swift",
"2D/Vector2+Double.swift",
"2D/Vector2+Float.swift",
"2D/Vector2.swift",
"3D/AABB3.swift",
"3D/Capsule3.swift",
"3D/Cube3.swift",
"3D/Cylinder3.swift",
"3D/DirectionalRay3.swift",
"3D/Disk3.swift",
"3D/Ellipse3.swift",
"3D/Hyperplane3.swift",
"3D/Line3.swift",
"3D/LineSegment3.swift",
"3D/Orientation3.swift",
"3D/PointCloud3.swift",
"3D/PointNormalPlane3.swift",
"3D/Projection/PlaneProjectiveSpace.swift",
"3D/Projection/SphereCoordinates.swift",
"3D/Projection/SphereProjectiveSpace.swift",
"3D/ProjectivePointNormalPlane3.swift",
"3D/Protocols/BaseGeometry/Convex3Type.swift",
"3D/Protocols/BaseGeometry/Line3IntersectableType.swift",
"3D/Protocols/BaseGeometry/VolumetricType+3D.swift",
"3D/Protocols/Line/Line3FloatingPoint.swift",
"3D/Protocols/Line/Line3Type.swift",
"3D/Protocols/Plane/Plane3Type.swift",
"3D/Protocols/Plane/PlaneIntersectablePlane3Type.swift",
"3D/Protocols/Vector/Vector3Additive.swift",
"3D/Protocols/Vector/Vector3FloatingPoint.swift",
"3D/Protocols/Vector/Vector3Multiplicative.swift",
"3D/Protocols/Vector/Vector3Real.swift",
"3D/Protocols/Vector/Vector3Type.swift",
"3D/Ray3.swift",
"3D/RotationMatrix3.swift",
"3D/RotationOrder3.swift",
"3D/SIMD/SIMD3+Double.swift",
"3D/Sphere3.swift",
"3D/Torus3.swift",
"3D/Triangle3.swift",
"3D/Vector3.swift",
"4D/Hyperplane4.swift",
"4D/Protocols/Vector/Vector4Additive.swift",
"4D/Protocols/Vector/Vector4FloatingPoint.swift",
"4D/Protocols/Vector/Vector4Type.swift",
"4D/SIMD/SIMD4+Double.swift",
"4D/Vector4.swift",
"Angles/Angle.swift",
"Angles/AngleSweep.swift",
"Generalized/AABB.swift",
"Generalized/ConvexLineIntersection.swift",
"Generalized/DirectionalRay.swift",
"Generalized/Ellipsoid.swift",
"Generalized/Hyperplane.swift",
"Generalized/Line.swift",
"Generalized/LineIntersection.swift",
"Generalized/LineIntersectionPointNormal.swift",
"Generalized/LinePolygon.swift",
"Generalized/LineSegment.swift",
"Generalized/NCapsule.swift",
"Generalized/NRectangle.swift",
"Generalized/NSphere.swift",
"Generalized/NSquare.swift",
"Generalized/PairLineIntersection.swift",
"Generalized/PointCloud.swift",
"Generalized/PointNormal.swift",
"Generalized/PointNormalPlane.swift",
"Generalized/Projection/Protocols/ProjectiveSpace.swift",
"Generalized/Property Wrappers/UnitVector.swift",
"Generalized/Protocols/BaseGeometry/BoundableType.swift",
"Generalized/Protocols/BaseGeometry/ConvexType.swift",
"Generalized/Protocols/BaseGeometry/GeometricType.swift",
"Generalized/Protocols/BaseGeometry/LineIntersectableType.swift",
"Generalized/Protocols/BaseGeometry/PointProjectableType.swift",
"Generalized/Protocols/BaseGeometry/SignedDistanceMeasurableType.swift",
"Generalized/Protocols/BaseGeometry/VolumetricType.swift",
"Generalized/Protocols/DivisibleArithmetic.swift",
"Generalized/Protocols/Line/LineAdditive.swift",
"Generalized/Protocols/Line/LineCategory.swift",
"Generalized/Protocols/Line/LineDivisible.swift",
"Generalized/Protocols/Line/LineFloatingPoint.swift",
"Generalized/Protocols/Line/LineMultiplicative.swift",
"Generalized/Protocols/Line/LineReal.swift",
"Generalized/Protocols/Line/LineSigned.swift",
"Generalized/Protocols/Line/LineType.swift",
"Generalized/Protocols/Plane/LineIntersectablePlaneType.swift",
"Generalized/Protocols/Plane/PlaneType.swift",
"Generalized/Protocols/Plane/PointProjectablePlaneType.swift",
"Generalized/Protocols/Rectangle/AdditiveRectangleType.swift",
"Generalized/Protocols/Rectangle/ConstructableRectangleType.swift",
"Generalized/Protocols/Rectangle/DivisibleRectangleType.swift",
"Generalized/Protocols/Rectangle/RectangleType.swift",
"Generalized/Protocols/Rectangle/SelfIntersectableRectangleType.swift",
"Generalized/Protocols/Vector/VectorAdditive.swift",
"Generalized/Protocols/Vector/VectorComparable.swift",
"Generalized/Protocols/Vector/VectorDivisible.swift",
"Generalized/Protocols/Vector/VectorFloatingPoint.swift",
"Generalized/Protocols/Vector/VectorMultiplicative.swift",
"Generalized/Protocols/Vector/VectorReal.swift",
"Generalized/Protocols/Vector/VectorSigned.swift",
"Generalized/Protocols/Vector/VectorTakeable.swift",
"Generalized/Protocols/Vector/VectorType.swift",
"Generalized/Ray.swift",
"Generalized/RoundNRectangle.swift",
"Generalized/Triangle+Coordinates.swift",
"Generalized/Triangle.swift",
"Matrices/Matrix2x2.swift",
"Matrices/Matrix3x2.swift",
"Matrices/Matrix3x3.swift",
"Matrices/Matrix4x4.swift",
"Matrices/Protocols/MatrixType.swift",
"Matrices/Protocols/SquareMatrixType.swift",
"Matrices/Protocols/TransposableMatrixType.swift",
"Utils/Comparable+Clamp.swift",
"Utils/SignedNumeric+Sign.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.