Functions

Scalar and Vector Print Functions

Type can be any defined type, such as RealList, IntegerList, Rhythm, Pitch, Complex, etc. More...

Functions

template<class Type >
Void Print (Type i)
 Global print function.
template<class Type >
Void Print (String s, Type i)
 Global print function with prefix string.

Detailed Description

Type can be any defined type, such as RealList, IntegerList, Rhythm, Pitch, Complex, etc.


Function Documentation

template<class Type >
Void Print ( Type  i )

Global print function.

Type may be any scalar or vector type.

Definition at line 136 of file Musimat.h.

Referenced by About(), and shuffle().

{ cout << i << endl; }
template<class Type >
Void Print ( String  s,
Type  i 
)

Global print function with prefix string.

Type may be any scalar or vector type.

Definition at line 140 of file Musimat.h.

{ cout << s << i << endl; }