in src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java [366:382]
public boolean containsAll( Collection<?> c )
{
if ( c == null )
{
return false;
}
for ( Object o : c )
{
if ( !contains( o ) )
{
return false;
}
}
return true;
}