Epok Engine

EPOK RUNTIME

epok::nav::Traversal::kind

Field

Field

Exposes `kind` on `epok::nav::Traversal` for the navigation module.

Belongs to
epok::nav::Traversal
Header
navigation.hpp

Declaration

Declaration
uint8_t kind

Exposes `kind` on `epok::nav::Traversal` for the navigation module.

Type
uint8_t
Storage
Per instance

Example

C++ example
#include "navigation.hpp"

epok::nav::Traversal& object = /* obtain a valid instance */;
auto value = object.kind;

// When mutation is valid for this object:
// object.kind = replacement;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/navigation.hpp:11