Interface schemeFW.INEList
- public interface INEList
- extends schemeFW.IList
Represents the structural behavior of an immutable non-empty list.
An immutable non-empty list has a data object called first, and an
isomorphic subcomponent called rest. Its structural behavior
provides access to its internal data (first) and substructure (rest).
- Author:
- Dung X. Nguyen, Stephen B. Wong

getFirst
()
- Accessor method for the list's first
getRest
()
- Accessor method for the list's rest

getFirst
public abstract Object getFirst()
- Accessor method for the list's first.
- Returns:
Object this INElist's first.
getRest
public abstract IList getRest()
- Accessor method for the list's rest.
- Returns:
Object this INElist's rest.