mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
138 B
Swift
11 lines
138 B
Swift
|
||
|
||
// A Swift × Haskell stdlib flavour.
|
||
|
||
public struct Vector<T: ~Copyable> {
|
||
|
||
subscript(_ i: UInt) -> T {
|
||
fatalError("todo")
|
||
}
|
||
}
|