package bjc.funcdata; public interface CListLike { boolean isEmpty(); T head(); CListLike tail(); CListLike prefix(T val); }