Epok Engine

EPOK RUNTIME

epok::bp::umul

Function · 1 overload

Function

Performs `umul` as part of compiled Blueprint execution and object interaction.

Belongs to
epok::bp
Header
blueprint_runtime.hpp
Overloads
1

Declaration

Declaration
constexpr uint32_t umul(uint32_t a, uint32_t b)

Performs `umul` as part of compiled Blueprint execution and object interaction.

ParameterTypeMeaning
auint32_tValue supplied for a. Keep referenced or pointed-to data valid for the complete call.
buint32_tValue supplied for b. Keep referenced or pointed-to data valid for the complete call.

Returns: uint32_t. Check the value before continuing when it represents success, availability or a resource handle.

Example

C++ example
#include "blueprint_runtime.hpp"

// Assume these named values have been initialized with valid data:
// uint32_t a
// uint32_t b

auto result = epok::bp::umul(a, b);

Why use it

It provides direct, allocation-conscious access to compiled Blueprint execution and object interaction. No exception-based error path is implied by the signature.

Trade-offs and warnings

This is classified as **Engine internal**. Prefer a higher-level Epok service unless you need this exact control.

Declared in runtime/blueprint_runtime.hpp:23

Related members