com.jnape.palatable.lambda.internal.iteration.RepetitiousIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambda Show documentation
Show all versions of lambda Show documentation
Functional patterns for Java
package com.jnape.palatable.lambda.internal.iteration;
public final class RepetitiousIterator extends InfiniteIterator {
private final A value;
public RepetitiousIterator(A value) {
this.value = value;
}
@Override
public A next() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy