This commit is contained in:
Михаил Капелько
2024-01-06 18:40:23 +03:00
parent f11dde1c8e
commit 676ec75bef
2 changed files with 11 additions and 10 deletions

View File

@@ -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
}
}
}

View File

@@ -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 { }