This commit is contained in:
Михаил Капелько
2024-01-06 18:40:23 +03:00
förälder f11dde1c8e
incheckning 676ec75bef
2 ändrade filer med 11 tillägg och 10 borttagningar

Visa fil

@@ -0,0 +1,10 @@
public extension MPAK {
public struct Recent<T> {
public var isRecent = false
public var value: T
public init(_ value: T) {
self.value = value
}
}
}

Visa fil

@@ -1,10 +1 @@
public enum MPAK {
public struct Recent<T> {
public var isRecent = false
public var value: T
public init(_ value: T) {
self.value = value
}
}
}
public enum MPAK { }