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

org.lambda.query.Loops Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package org.lambda.query;

import org.lambda.actions.Action1;

public class Loops
{
  public static  void forEach(Iterable list, Action1 doForEach)
  {
    for (In in : list)
    {
      doForEach.call(in);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy