Skip to content
Snippets Groups Projects
Commit a9b6518e authored by jakubs's avatar jakubs
Browse files

LMS-2794: add a predicate delegate type

SVN: 24548
parent 09bb588b
No related branches found
No related tags found
No related merge requests found
package ch.systemsx.cisd.common.utilities;
/**
* Delegate for a function T => boolean
*
* @author jakubs
*/
public interface IPredicate<T>
{
boolean execute(T arg);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment