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

hr.com.vgv.verano.http.DictOf Maven / Gradle / Ivy

There is a newer version: 0.41
Show newest version
package hr.com.vgv.verano.http;

import org.cactoos.iterable.IterableOf;

public class DictOf extends Dict.Template
{
    public DictOf(final DictInput... inputs) {
        this(new IterableOf<>(inputs));
    }

    public DictOf(final Iterable inputs)
    {
        super(() -> {
            Dict dict = new HashDict();
            for (final DictInput input: inputs) {
                dict = input.apply(dict);
            }
            return dict;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy