com.github.grignaak.collections.impl.Box Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cow-collections Show documentation
Show all versions of cow-collections Show documentation
Copy-on-write collections for easy, thread-safe, immutability
package com.github.grignaak.collections.impl;
@Beta
public class Box {
private T boxed;
public void box(T boxed) {
this.boxed = boxed;
}
public T unbox() {
return boxed;
}
}