My Project
Loading...
Searching...
No Matches
Data Structures | Macros | Functions
ftmpl_array.h File Reference
#include <iostream>

Go to the source code of this file.

Data Structures

class  Array< T >
 

Macros

#define OSTREAM   std::ostream
 

Functions

template<class T >
OSTREAMoperator<< (OSTREAM &os, const Array< T > &a)
 

Macro Definition Documentation

◆ OSTREAM

#define OSTREAM   std::ostream

Definition at line 9 of file ftmpl_array.h.

Function Documentation

◆ operator<<()

template<class T >
OSTREAM & operator<< ( OSTREAM os,
const Array< T > &  a 
)

Definition at line 151 of file ftmpl_array.cc.

152{
153 a.print( os );
154 return os;
155}
void print(OSTREAM &) const
Definition: ftmpl_array.cc:138