The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of LazyArray, reference 1.1.0 (d4a88c), with Swift 6.0 for macOS (SPM) on 27 Nov 2024 01:22:04 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lucas34/LazyArray.git
Reference: 1.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/lucas34/LazyArray
 * tag               1.1.0      -> FETCH_HEAD
HEAD is now at d4a88c7 Release 1.1.0
Cloned https://github.com/lucas34/LazyArray.git
Revision (git rev-parse @):
d4a88c74376a47e25231d039349cdae907ffcc4a
SUCCESS checkout https://github.com/lucas34/LazyArray.git at 1.1.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "lazyarray",
      "name": "LazyArray",
      "url": "https://github.com/lucas34/LazyArray.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/LazyArray",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/lucas34/LazyArray.git
[1/248] Fetching lazyarray
Fetched https://github.com/lucas34/LazyArray.git from cache (0.66s)
Creating working copy for https://github.com/lucas34/LazyArray.git
Working copy of https://github.com/lucas34/LazyArray.git resolved at 1.1.0 (d4a88c7)
warning: '.resolve-product-dependencies': dependency 'lazyarray' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/lucas34/LazyArray.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/12] Compiling LazyArray LazyArray.swift
[4/13] Compiling LazyArray LazyArray+Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
 8 | public extension LazyArray {
 9 |
10 |     public static func EMPTY<E>() -> LazyArray<E> {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
11 |         return LazyArray<E>()
12 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 |     }
13 |
14 |     public final var isEmpty: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
15 |         return count < 1
16 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 |     }
17 |
18 |     public final var hasData: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
19 |         return !isEmpty
20 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 |     }
21 |
22 |     public final var first: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
23 |         return isEmpty ? nil : self[0]
24 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 |     }
25 |
26 |     public final var last: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
27 |         return isEmpty ? nil : self[count - 1]
28 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 |     }
29 |
30 |     public final func dropFirst() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 |         guard count > 0 else {
32 |             return LazyArray<Element>.EMPTY()
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 |     }
36 |
37 |     public final func dropFirst(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 |         guard n >= 0 else {
39 |             fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 |     }
43 |
44 |     public final func dropLast() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 |         return self[0..<Swift.max(0, (count - 1))]
46 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 |     }
47 |
48 |     public final func dropLast(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 |         guard n >= 0 else {
50 |             fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 |     }
54 |
55 |     public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 |         guard maxLength >= 0 else {
57 |             fatalError("Can't take a prefix of negative length from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 |     }
61 |
62 |     public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 |         guard maxLength >= 0 else {
64 |             fatalError("Can't take a suffix of negative length from a collection")
[5/13] Compiling LazyArray LazyArray+Linear.swift
[6/13] Compiling LazyArray LazyArray+Range.swift
[7/13] Compiling LazyArray LazyArray+CoutableRange.swift
[8/13] Compiling LazyArray LazyArray+Cache.swift
[9/13] Compiling LazyArray LazyArray+Array.swift
[10/13] Compiling LazyArray LazyArray+Any.swift
[11/13] Emitting module LazyArray
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
 8 | public extension LazyArray {
 9 |
10 |     public static func EMPTY<E>() -> LazyArray<E> {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
11 |         return LazyArray<E>()
12 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 |     }
13 |
14 |     public final var isEmpty: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
15 |         return count < 1
16 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 |     }
17 |
18 |     public final var hasData: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
19 |         return !isEmpty
20 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 |     }
21 |
22 |     public final var first: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
23 |         return isEmpty ? nil : self[0]
24 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 |     }
25 |
26 |     public final var last: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
27 |         return isEmpty ? nil : self[count - 1]
28 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 |     }
29 |
30 |     public final func dropFirst() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 |         guard count > 0 else {
32 |             return LazyArray<Element>.EMPTY()
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 |     }
36 |
37 |     public final func dropFirst(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 |         guard n >= 0 else {
39 |             fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 |     }
43 |
44 |     public final func dropLast() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 |         return self[0..<Swift.max(0, (count - 1))]
46 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 |     }
47 |
48 |     public final func dropLast(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 |         guard n >= 0 else {
50 |             fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 |     }
54 |
55 |     public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 |         guard maxLength >= 0 else {
57 |             fatalError("Can't take a prefix of negative length from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 |     }
61 |
62 |     public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 |         guard maxLength >= 0 else {
64 |             fatalError("Can't take a suffix of negative length from a collection")
[12/13] Compiling LazyArray LazyArray+Map.swift
[13/13] Compiling LazyArray LazyMutableList.swift
Build complete! (13.40s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "LazyArray",
  "name" : "LazyArray",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "LazyArray",
      "targets" : [
        "LazyArray"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "3",
    "4"
  ],
  "targets" : [
    {
      "c99name" : "LazyArrayTests",
      "module_type" : "SwiftTarget",
      "name" : "LazyArrayTests",
      "path" : "Tests/LazyArrayTests",
      "sources" : [
        "LazyArrayTests.swift"
      ],
      "target_dependencies" : [
        "LazyArray"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LazyArray",
      "module_type" : "SwiftTarget",
      "name" : "LazyArray",
      "path" : "Sources/LazyArray",
      "product_memberships" : [
        "LazyArray"
      ],
      "sources" : [
        "LazyArray+Any.swift",
        "LazyArray+Array.swift",
        "LazyArray+Cache.swift",
        "LazyArray+CoutableRange.swift",
        "LazyArray+Linear.swift",
        "LazyArray+Map.swift",
        "LazyArray+Range.swift",
        "LazyArray+Sequence.swift",
        "LazyArray.swift",
        "LazyMutableList.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.