001package com.hammurapi.extract;
002
003
004/**
005 * Predicates are extractors which extract boolean values.
006 * @author Pavel Vlasov.
007 *
008 * @param <T> Source type.
009 * @param <C> Context type.
010 */
011public interface Predicate<T, C> extends Extractor<T, Boolean, C> {
012
013
014}