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

com.oath.cyclops.internal.stream.StreamableImpl Maven / Gradle / Ivy

There is a newer version: 10.4.1
Show newest version
package com.oath.cyclops.internal.stream;

import cyclops.companion.Streamable;

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
public class StreamableImpl implements Streamable {
    @Getter
    private final Iterable streamable;

    @Override
    public String toString() {
        return String.format("Streamable[%s]", streamable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy