enum State
s5Utils4LazyC5StateO
5S86O
import Utils
@propertyWrapper class Lazy<V>
case lazy(() -> V)
case computed(V)
init(state: State)
convenience init(wrappedValue: @autoclosure @escaping () -> V)
static func computed(_ v: V) -> Lazy
static func lazy(_ f: @escaping () -> V) -> Lazy
var wrappedValue: V { get }