mirror of
https://github.com/github/semantic.git
synced 2024-12-02 11:23:05 +03:00
41 lines
857 B
Swift
41 lines
857 B
Swift
struct Matrix<A> {
|
|
init(width: Int, height: Int, compute: (Int, Int) -> A) {
|
|
var values: [Memo<A>] = []
|
|
values.reserveCapacity(width * height)
|
|
|
|
for i in 0..<width {
|
|
for j in 0..<height {
|
|
values[i + j * height] = Memo<A> { compute(i, j) }
|
|
}
|
|
}
|
|
|
|
self.init(width: width, height: height, values: values)
|
|
}
|
|
|
|
let width: Int
|
|
let height: Int
|
|
|
|
let values: [Memo<A>]
|
|
|
|
subscript (i: Int, j: Int) -> Memo<A>? {
|
|
guard i < width && j < height else { return nil }
|
|
return values[i + j * height]
|
|
}
|
|
|
|
|
|
// MARK: Functor
|
|
|
|
func map<Other>(transform: A -> Other) -> Matrix<Other> {
|
|
return Matrix<Other>(width: width, height: height, values: values.map { $0.map(transform) })
|
|
}
|
|
|
|
|
|
// MARK: Implementation details
|
|
|
|
private init(width: Int, height: Int, values: [Memo<A>]) {
|
|
self.width = width
|
|
self.height = height
|
|
self.values = values
|
|
}
|
|
}
|