// // EnumValuing.swift // VDS // // Created by Matt Bruce on 3/1/24. // import Foundation public protocol DefaultValuing: Valuing { static var defaultValue: Self { get } } public protocol CGFloatDefaultValuing: DefaultValuing where ValueType == CGFloat {}