main
1namespace jive
2{
3  public interface Specification<in T>
4  {
5    bool is_satisfied_by(T item);
6  }
7}