VCollections.src.org.violetlib.collections.impl.IterableWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcollections Show documentation
Show all versions of vcollections Show documentation
Java Immutable Collections
The newest version!
/*
* Copyright (c) 2023 Alan Snyder.
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the license agreement. For details see
* accompanying license terms.
*/
package org.violetlib.collections.impl;
import org.jetbrains.annotations.NotNull;
import org.violetlib.collections.IIterable;
import org.violetlib.collections.IIterator;
/**
*/
public final class IterableWrapper
implements IIterable
{
public static @NotNull IIterable create(@NotNull Iterable it)
{
return new IterableWrapper<>(it);
}
private final @NotNull Iterable it;
private IterableWrapper(@NotNull Iterable it)
{
this.it = it;
}
@Override
public @NotNull IIterator iterator()
{
return IIteratorImpl.create(it.iterator());
}
}