main
1namespace gorilla.commons.utility
2{
3    public interface Specification<T>
4    {
5        bool is_satisfied_by(T item);
6    }
7}