Epok Engine

EPOK RUNTIME

epok::remove_runtime_owner

Function · 1 overload

Function

Removes runtime owner as part of the epok module.

Belongs to
epok
Header
epok.hpp
Overloads
1

Declaration

Declaration
void remove_runtime_owner(size_t index)

Removes runtime owner as part of the epok module.

ParameterTypeMeaning
indexsize_tValue supplied for index. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "epok.hpp"

// Assume these named values have been initialized with valid data:
// size_t index

epok::remove_runtime_owner(index);

Why use it

It provides direct, allocation-conscious access to the epok 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/epok.hpp:214

Related members