Skip to content

FunctionOr: Function.h

Amlal El Mahrouss edited this page Dec 3, 2025 · 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