enum lfds711_btree_au_existing_key

From liblfds.org
Revision as of 18:11, 16 February 2017 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source File

└───liblfds711
    └───inc
        └───liblfds711
                lfds711_btree_addonly_unbalanced.h

Enum

enum lfds711_btree_au_existing_key
{
  LFDS711_BTREE_AU_EXISTING_KEY_OVERWRITE,
  LFDS711_BTREE_AU_EXISTING_KEY_FAIL
};

Values

LFDS711_BTREE_AU_EXISTING_KEY_OVERWRITE

Indicates that if when inserting a new element into a btree, the key in the new element is already present in the btree, that the value of the new element should be written into the existing element.

LFDS711_BTREE_AU_EXISTING_KEY_FAIL

Indicates that if when inserting a new element into a btree, the key in the new element is already present in the btree, the insert should fail.

Notes

This enum is passed to the lfds711_btree_au_init_valid_on_current_logical_core function, to indicte how the btree should behave when attempting to insert keys which already exist.

See Also