Lolly 1.4.27
Loading...
Searching...
No Matches
Macros | Functions
rel_hashmap.ipp File Reference
#include "rel_hashmap.hpp"
Include dependency graph for rel_hashmap.ipp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define REL_HASHMAP_CC
 

Functions

template<class T , class U >
tm_ostreamoperator<< (tm_ostream &out, rel_hashmap< T, U > H)
 

Macro Definition Documentation

◆ REL_HASHMAP_CC

#define REL_HASHMAP_CC

Definition at line 18 of file rel_hashmap.ipp.

Function Documentation

◆ operator<<()

template<class T , class U >
tm_ostream & operator<< ( tm_ostream & out,
rel_hashmap< T, U > H )

Definition at line 124 of file rel_hashmap.ipp.

125 {
126 if (is_nil (H)) out << "(null)";
127 else {
128 while (!is_nil (H->next)) {
129 out << H->item << LF;
130 out << HRULE << LF;
131 H= H->next;
132 }
133 out << H->item << LF;
134 }
135 return out;
136}
@ LF
Definition basic.hpp:287
@ HRULE
Definition basic.hpp:287
bool is_nil(blackbox x)
Definition blackbox.hpp:29
#define H
Definition hashmap.ipp:17