Blame view
Pods/Kingfisher/Sources/Box.swift
241 Bytes
|
d774f0637
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
//
// Box.swift
// Kingfisher
//
// Created by WANG WEI on 2016/09/12.
// Copyright © 2016年 Wei Wang. All rights reserved.
//
import Foundation
class Box<T> {
let value: T
init(value: T) {
self.value = value
}
}
|