Box.swift 241 B

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