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

Go to the source code of this file.

Classes

class  hashtree_rep< K, V >
 
class  hashtree< K, V >
 

Functions

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

Function Documentation

◆ N()

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

Definition at line 129 of file hashtree.ipp.

129 {
130 return N (ht->children);
131}
The list class represents a linked list.
Definition list.hpp:48
int N(hashtree< K, V > ht)
Definition hashtree.ipp:129

◆ is_nil()

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

Definition at line 123 of file hashtree.ipp.

123 {
124 return ht.rep == NULL;
125}