Avatar
public struct PredicateBindings { // Store as a values as an array instead of a dictionary (since it is almost always very few elements, this reduces heap allocation and hashing overhead) private var storage: [(id: PredicateExpressions.VariableID, value: Any)] public init<each T>(_ value: repeat (PredicateExpressions.Variable<each T>, each T)) { storage = [] _ = (repeat storage.append(((each value).0.key, (each value).1))) }
12:47 AM
variadic genericsだ