Closed jsbean closed 5 years ago
Thus, the Measure
protocol from #2 could look like this:
protocol Measure {
var number: Int { get }
var text: String? { get }
var implicit: Bool { get }
var nonControlling: Bool { get }
var width: Int { get }
var id: String? { get }
}
Currently,
Measure
contains an array ofAttribute
values. TheAttribute
values are not actually applicable to aMeasure
specifically, but can be defined at any point (incl. mid-measure).Instead, model
Measure
around these parameters: