package cl
The ClueLib package. All library files are included in this package. A class declared within the package can be accessed using one of the following:
int i = cl::choice#(int)::min( 1, 2 );
import cl::choice; int i = choice#(int)::min( 1, 2 );
import cl::*; int i = choice#(int)::min( 1, 2 );
The ClueLib package.
package cl