Epok Engine

EPOK RUNTIME

epok::nav::World::reset

Method · 1 overload

Method

Resets reset as part of the navigation module.

Belongs to
epok::nav::World
Header
navigation.hpp
Overloads
1

Declaration

Declaration
void reset(Graph value)

Resets reset as part of the navigation module.

ParameterTypeMeaning
valueGraphValue supplied for value. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "navigation.hpp"

// Assume these named values have been initialized with valid data:
// Graph value

epok::nav::World& object = /* obtain a valid instance */;

object.reset(value);

Why use it

It provides direct, allocation-conscious access to the navigation module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/navigation.hpp:35

Related members