You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
288 B

2 years ago
  1. //
  2. // Box.swift
  3. // Swinject
  4. //
  5. // Created by Yoichi Tagaya on 11/27/15.
  6. // Copyright © 2015 Swinject Contributors. All rights reserved.
  7. //
  8. import Foundation
  9. internal final class Box<T> {
  10. internal let value: T
  11. internal init(_ value: T) {
  12. self.value = value
  13. }
  14. }