Class managing the value access of an entry. More...
#include <include/gudhi/Persistence_matrix/columns/entry_types.h>
Public Member Functions | |
| Entry_field_element () | |
| Default constructor. Sets to the element to 0. | |
| Entry_field_element (Field_element element) | |
| Stores the given element. More... | |
| Entry_field_element (const Entry_field_element &entry) | |
| Copy constructor. More... | |
| Entry_field_element (Entry_field_element &&entry) noexcept | |
| Move constructor. More... | |
| Field_element & | get_element () |
| Returns the value stored in the entry. More... | |
| const Field_element & | get_element () const |
| Returns the value stored in the entry. More... | |
| void | set_element (const Field_element &element) |
| Sets the value. More... | |
| Entry_field_element & | operator= (Entry_field_element other) |
| Assign operator. | |
Class managing the value access of an entry.
| Field_element | Type of an entry value. |
|
inline |
Stores the given element.
| element | Value to store. |
|
inline |
Copy constructor.
| entry | Entry to copy. |
|
inlinenoexcept |
Move constructor.
| entry | Entry to move. |
|
inline |
Returns the value stored in the entry.
|
inline |
Returns the value stored in the entry.
|
inline |
Sets the value.
| element | Value to store. |