com.bestvike.ref Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linq Show documentation
Show all versions of linq Show documentation
LINQ to Objects for Java.
The newest version!
package com.bestvike;
/**
* Created by 许崇雷 on 2018-04-20.
*/
public final class ref {
public T value;
private ref() {
}
public static ref init(T value) {
ref ref = new ref<>();
ref.value = value;
return ref;
}
}