This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//////////////////////////////////// | |
// Main bundle finding logic | |
import Foundation | |
public protocol BundleFinder: AnyObject { | |
static var packageName: String { get } | |
static var moduleName: String { get } | |
static var packageModule: Bundle { get } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ComposableArchitecture | |
@_spi(Reflection) import CasePaths | |
public protocol DerivingIdentifiable: Hashable, Identifiable where ID == AnyHashable {} | |
@usableFromInline | |
struct MergeHashes: Hashable { | |
@usableFromInline | |
var first: any Hashable | |