Difference between revisions of "r7.1.0:Macro LFDS710 HASH A GET VALUE FROM ELEMENT"

From liblfds.org
Jump to navigation Jump to search
m (1 revision imported)
 
(No difference)

Latest revision as of 21:04, 7 May 2016

Source File

└───liblfds710
    └───inc
        └───liblfds710
                lfds710_hash_addonly.h

Macro

#define LFDS710_HASH_A_GET_KEY_FROM_ELEMENT( hash_a_element )

Parameters

hash_a_element

A struct lfds710_hash_a_element. Not a pointer to it - the struct itself.

Return Value

Returns a void pointer, the key from the element.

Example

struct lfds710_hash_a_element
  haw;

void
  *key;

key = LFDS710_HASH_A_GET_KEY_FROM_ELEMENT( haw );

Notes

As with all liblfds macros, the macro operates on the structure itself, not a pointer to it.

See Also

Hash (add-only)