/**
 * This class provides a linked list, optimized for node access speed.
 * <br><br>
 * <a href="mailto:ehudsons@andrew.cmu.edu">Ellen Hudson-Snyder</a>, 
 * <a href="mailto:evedar@andrew.cmu.edu">Elvin Vedar</a>,
 * <a href="mailto:cbalz@andrew.cmu.edu">Christopher M. Balz</a>.
 * <br><br>CVS Version Info:<br>
 *  $Id: FastNode.js,v 1.3 2005/10/31 04:46:24 cbalz Exp $
 * <br><br>
 * @object-prop <code>any</code> <code>anyData</code>  Any data that the node carries.  Note that this 
 *                       property may carry data of any datatype.
 * @object-prop <code>FastNode</code> <code>objNext</code>  A reference to the next node, if any.  This is 
 *                       <code>null</code> if there is no next node.
 * @author Team GigaToasted (Fall-2005-CMU-NASA/Google-Practicum Subteam) 
 * @version 1.0
 */


/**
 * Create a <code>FastNode</code>.
 * @param pAnyData  Any data to insert into the new list node.  The data may be of 
 *                  any type.
 */
function FastNode(pAnyData) {
    this.anyData = pAnyData;
    this.objNext = null;
}
