vds_ios/VDS/Classes/Constants.swift
Matt Bruce ffe3641500 refactored out VDS from naming conventions
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-03 13:56:14 -05:00

20 lines
359 B
Swift

//
// VDSConstants.swift
// VDS
//
// Created by Matt Bruce on 8/3/22.
//
import Foundation
public struct Constants {
public static let ModelStateDebounce = 0.02
public static let PaddingOne = 10.0
}
public func updated <T> (_ value: T, with update: (inout T) -> Void) -> T {
var editable = value
update(&editable)
return editable
}