vds_ios/VDS/Classes/VDSConstants.swift
Matt Bruce ce4faadf0c converted defaults to structs
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-03 09:01:46 -05:00

19 lines
322 B
Swift

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