001    package railo.runtime.img.math;
002    
003    public interface BinaryFunction {
004            public boolean isBlack(int rgb);
005    }
006