Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 0 additions & 80 deletions Sources/OpenSwiftUICore/Data/Util/Cache3.swift

This file was deleted.

6 changes: 1 addition & 5 deletions Sources/OpenSwiftUICore/Runtime/TypeConformance.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,8 @@ package struct TypeConformance<P> where P: ProtocolDescriptor {
}
}

package func conformsToProtocol(_ type: any Any.Type, _ desc: UnsafeRawPointer) -> Bool {
swiftConformsToProtocol(type, desc) != nil
}

@_silgen_name("swift_conformsToProtocol")
private func swiftConformsToProtocol(
func swiftConformsToProtocol(
_ type: Any.Type,
_ protocolDescriptor: UnsafeRawPointer
) -> UnsafeRawPointer?
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
// Collection+Extension.swift
// OpenSwiftUICore
//
// Audited for iOS 18.0
// Status: Complete

// MARK: - Collection + Index Extension [6.0.87]

extension Collection {
package func index(atOffset n: Int) -> Index {
index(startIndex, offsetBy: n)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
// FloatingPoint+Extension.swift
// OpenSwiftUICore
//
// Audited for iOS 18.0
// Status: Complete

package import Foundation

// MARK: - FloatingPoint + Zero [6.0.87]

extension FloatingPoint {
/// Determines whether two floating-point values are approximately equal within a specified tolerance.
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ extension UnsafeMutableBufferPointer {
baseAddress ?? .null
}
}

Loading