![JAR search and dependency download from the Maven repository](/logo.png)
com.bestvike.collections.generic.IList Maven / Gradle / Ivy
package com.bestvike.collections.generic;
import com.bestvike.function.Predicate1;
/**
* Created by 许崇雷 on 2019-07-09.
*/
public interface IList extends ICollection {
T get(int index);
int _indexOf(T item);
int _lastIndexOf(T item);
int _findIndex(Predicate1 match);
int _findLastIndex(Predicate1 match);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy