All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.andyshao.lang.Iterator2Iterable Maven / Gradle / Ivy

The newest version!
package com.github.andyshao.lang;

import java.util.Iterator;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Apr 25, 2015
* Encoding:UNIX UTF-8 * * @author Andy.Shao * * @param element type */ public class Iterator2Iterable implements Convert , Iterable> { @Override public Iterable convert(Iterator in) { return () -> in; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy