package schemeFW; /** * Represents the structural behavior of the immutable empty list. * The empty list has no well-defined structural behavior: * it has no first and no rest. * @author Dung X. Nguyen * @author Stephen B. Wong * @Custom Copyright 2001 -All rights reserved */ public interface IEmptyList extends IList { }