Files
makata/Sources/user-interface/protocol/protocol-attributable.swift
2023-02-03 15:56:38 +08:00

17 lines
341 B
Swift

// protocol-attributable.swift
//
// Code Copyright Buslo Collective
// Created 2/3/23
import Foundation
public protocol Attributable: AnyObject {}
public extension Attributable {
func attribute<Value>(on: ReferenceWritableKeyPath<Self, Value>, _ value: Value) -> Self {
self[keyPath: on] = value
return self
}
}