The Original CHomP Software
Static Public Member Functions | List of all members
chomp::homology::HashingMember< element > Class Template Reference

A hashing method using member functions that calculate the two required hashing keys. More...

#include <hashsets.h>

Static Public Member Functions

static int_t hashkey1 (const element &x)
 Returns the first hashing key of the element. More...
 
static int_t hashkey2 (const element &x)
 Returns the second hashing key of the element. More...
 

Detailed Description

template<class element>
class chomp::homology::HashingMember< element >

A hashing method using member functions that calculate the two required hashing keys.

Definition at line 154 of file hashsets.h.

Member Function Documentation

◆ hashkey1()

template<class element >
static int_t chomp::homology::HashingMember< element >::hashkey1 ( const element &  x)
inlinestatic

Returns the first hashing key of the element.

Definition at line 158 of file hashsets.h.

159 {
160 return x. hashkey1 ();
161 }
static int_t hashkey1(const element &x)
Returns the first hashing key of the element.
Definition: hashsets.h:158

References chomp::homology::HashingMember< element >::hashkey1().

Referenced by chomp::homology::HashingMember< element >::hashkey1().

◆ hashkey2()

template<class element >
static int_t chomp::homology::HashingMember< element >::hashkey2 ( const element &  x)
inlinestatic

Returns the second hashing key of the element.

Definition at line 164 of file hashsets.h.

165 {
166 return x. hashkey2 ();
167 }
static int_t hashkey2(const element &x)
Returns the second hashing key of the element.
Definition: hashsets.h:164

References chomp::homology::HashingMember< element >::hashkey2().

Referenced by chomp::homology::HashingMember< element >::hashkey2().


The documentation for this class was generated from the following file: