package BoxTools;
/**
* A Link
object contains two pointers, one to the element it links, which is
* of type T
, and one to another Link
object.
* A Link
object must be local, while the element it links can be global.
*
Usage: A Link
object must be declared local.
*
Access level: package.
* @see List
* @version 1.0
* @author Tong Wen, LBNL
* @since 1.0
*/
templateLink
object this connects to */
template LinkT
this connects to */
T element;
inline Link(template Link