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

com.dragome.compiler.graph.EdgeCollections Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.compiler.graph;

import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;

public class EdgeCollections
{

	public static Set getSources(Collection edges)
	{
		Set sources= new LinkedHashSet();
		for (Edge edge : edges)
		{
			sources.add(edge.source);
		}
		return sources;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy