mirror of
https://github.com/github/semantic.git
synced 2024-11-25 21:43:07 +03:00
52 lines
1.4 KiB
Swift
52 lines
1.4 KiB
Swift
/// A two-dimensional matrix of memoized values.
|
||
///
|
||
/// These values are populated by a function from the coordinates of a given cell to the matrix’s element type.
|
||
///
|
||
/// Values are retrieved by subscripting with row/column indices. Out-of-bound indices produce `nil` values, rather than asserting.
|
||
public struct Matrix<A> {
|
||
public init(width: Int, height: Int, compute: (Int, Int) -> A) {
|
||
self.init(width: width, height: height, values: constructRowMajor(width, height: height, forEach: { i, j in Memo { compute(i, j) } }))
|
||
}
|
||
|
||
public let width: Int
|
||
public let height: Int
|
||
|
||
private let values: [Memo<A>]
|
||
|
||
public subscript (i: Int, j: Int) -> Memo<A>? {
|
||
guard i < width && j < height else { return nil }
|
||
return values[i + j * width]
|
||
}
|
||
|
||
|
||
// MARK: Functor
|
||
|
||
public 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
|
||
}
|
||
}
|
||
|
||
/// Constructs a row-major ordering of values produced with `forEach`.
|
||
private func constructRowMajor<A>(width: Int, height: Int, @noescape forEach: (Int, Int) -> A) -> [A] {
|
||
var values: [A] = []
|
||
values.reserveCapacity(width * height)
|
||
for j in 0..<height {
|
||
for i in 0..<width {
|
||
values.append(forEach(i, j))
|
||
}
|
||
}
|
||
return values
|
||
}
|
||
|
||
|
||
import Memo
|