Skip to content

Using NeKernel: FunctionOr: Function.h

Amlal El Mahrouss edited this page Mar 8, 2026 · 1 revision

Implementation

template <typename T, typename... Args>
using FunctionOr = ErrorOr<Function<T, Args...>>;

Brief

An alias of ErrorOr<Function<T, Args...>>, which holds a function pointer reference. (Ref<Function<T, Args...>>)

Clone this wiki locally