Tusker/Tusker/Box.swift

23 lines
366 B
Swift
Raw Normal View History

2024-03-29 01:32:11 +00:00
//
// Box.swift
// Tusker
//
// Created by Shadowfacts on 3/26/24.
// Copyright © 2024 Shadowfacts. All rights reserved.
//
import Foundation
@propertyWrapper
final class Box<Value> {
2024-03-29 01:32:11 +00:00
var wrappedValue: Value
init(wrappedValue: Value) {
self.wrappedValue = wrappedValue
}
var projectedValue: Box<Value> {
self
}
2024-03-29 01:32:11 +00:00
}