mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
148 B
Plaintext
13 lines
148 B
Plaintext
|
|
public protocol Prot {
|
|
}
|
|
|
|
public struct Yoda<
|
|
Base : IteratorProtocol
|
|
> : Prot {
|
|
|
|
public func down<U>(
|
|
p: Array<U>
|
|
) -> Array<U>
|
|
}
|