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

Go to the source code of this file.

Macros

#define HASHTREE_C
 

Functions

template<class K , class V >
bool is_nil (hashtree< K, V > ht)
 
template<class K , class V >
int N (hashtree< K, V > ht)
 

Macro Definition Documentation

◆ HASHTREE_C

#define HASHTREE_C

Definition at line 15 of file hashtree.ipp.

Function Documentation

◆ is_nil()

template<class K , class V >
bool is_nil ( hashtree< K, V > ht)
inline

Definition at line 123 of file hashtree.ipp.

123 {
124 return ht.rep == NULL;
125}
The list class represents a linked list.
Definition list.hpp:48

◆ N()

template<class K , class V >
int N ( hashtree< K, V > ht)
inline

Definition at line 129 of file hashtree.ipp.

129 {
130 return N (ht->children);
131}
int N(hashtree< K, V > ht)
Definition hashtree.ipp:129