duktape

Undocumented in source.

Public Imports

duk_config
public import duk_config;

Members

Aliases

duk_alloc_function
alias duk_alloc_function = void* function(void* udata, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_c_function
alias duk_c_function = int function(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_detached_function
alias duk_debug_detached_function = void function(duk_context* ctx, void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_peek_function
alias duk_debug_peek_function = ulong function(void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_read_flush_function
alias duk_debug_read_flush_function = void function(void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_read_function
alias duk_debug_read_function = ulong function(void* udata, char* buffer, duk_size_t length)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_request_function
alias duk_debug_request_function = int function(duk_context* ctx, void* udata, duk_idx_t nvalues)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_write_flush_function
alias duk_debug_write_flush_function = void function(void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debug_write_function
alias duk_debug_write_function = ulong function(void* udata, const(char)* buffer, duk_size_t length)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_decode_char_function
alias duk_decode_char_function = void function(void* udata, duk_codepoint_t codepoint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_fatal_function
alias duk_fatal_function = void function(void* udata, const(char)* msg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_free_function
alias duk_free_function = void function(void* udata, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_callable
alias duk_is_callable = duk_is_function
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_map_char_function
alias duk_map_char_function = int function(void* udata, duk_codepoint_t codepoint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_realloc_function
alias duk_realloc_function = void* function(void* udata, void* ptr, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_callable
alias duk_require_callable = duk_require_function
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_safe_call_function
alias duk_safe_call_function = int function(duk_context* ctx, void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

duk_alloc
void* duk_alloc(duk_context* ctx, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_alloc_raw
void* duk_alloc_raw(duk_context* ctx, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_base64_decode
void duk_base64_decode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_base64_encode
const(char)* duk_base64_encode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_buffer_to_string
const(char)* duk_buffer_to_string(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_call
void duk_call(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_call_method
void duk_call_method(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_call_prop
void duk_call_prop(duk_context* ctx, duk_idx_t obj_idx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_char_code_at
duk_codepoint_t duk_char_code_at(duk_context* ctx, duk_idx_t idx, duk_size_t char_offset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_check_stack
duk_bool_t duk_check_stack(duk_context* ctx, duk_idx_t extra)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_check_stack_top
duk_bool_t duk_check_stack_top(duk_context* ctx, duk_idx_t top)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_check_type
duk_bool_t duk_check_type(duk_context* ctx, duk_idx_t idx, duk_int_t type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_check_type_mask
duk_bool_t duk_check_type_mask(duk_context* ctx, duk_idx_t idx, duk_uint_t mask)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_compact
void duk_compact(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_compile
void duk_compile(duk_context* ctx, duk_uint_t flags)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_compile_lstring
void duk_compile_lstring(duk_context* ctx, duk_uint_t flags, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_compile_lstring_filename
void duk_compile_lstring_filename(duk_context* ctx, duk_uint_t flags, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_compile_raw
duk_int_t duk_compile_raw(duk_context* ctx, const(char)* src_buffer, duk_size_t src_length, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_compile_string
void duk_compile_string(duk_context* ctx, duk_uint_t flags, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_compile_string_filename
void duk_compile_string_filename(duk_context* ctx, duk_uint_t flags, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_components_to_time
duk_double_t duk_components_to_time(duk_context* ctx, duk_time_components* comp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_concat
void duk_concat(duk_context* ctx, duk_idx_t count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_config_buffer
void duk_config_buffer(duk_context* ctx, duk_idx_t idx, void* ptr, duk_size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_copy
void duk_copy(duk_context* ctx, duk_idx_t from_idx, duk_idx_t to_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_create_heap
duk_context* duk_create_heap(duk_alloc_function alloc_func, duk_realloc_function realloc_func, duk_free_function free_func, void* heap_udata, duk_fatal_function fatal_handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_create_heap_default
auto duk_create_heap_default()
Undocumented in source. Be warned that the author may not have intended to support it.
duk_debugger_attach
void duk_debugger_attach(duk_context* ctx, duk_debug_read_function read_cb, duk_debug_write_function write_cb, duk_debug_peek_function peek_cb, duk_debug_read_flush_function read_flush_cb, duk_debug_write_flush_function write_flush_cb, duk_debug_request_function request_cb, duk_debug_detached_function detached_cb, void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debugger_cooperate
void duk_debugger_cooperate(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debugger_detach
void duk_debugger_detach(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debugger_notify
duk_bool_t duk_debugger_notify(duk_context* ctx, duk_idx_t nvalues)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_debugger_pause
void duk_debugger_pause(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_decode_string
void duk_decode_string(duk_context* ctx, duk_idx_t idx, duk_decode_char_function callback, void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_def_prop
void duk_def_prop(duk_context* ctx, duk_idx_t obj_idx, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop
duk_bool_t duk_del_prop(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop_heapptr
duk_bool_t duk_del_prop_heapptr(duk_context* ctx, duk_idx_t obj_idx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop_index
duk_bool_t duk_del_prop_index(duk_context* ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop_literal
auto duk_del_prop_literal(T0 ctx, T1 obj_idx, T2 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_del_prop_literal_raw
duk_bool_t duk_del_prop_literal_raw(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop_lstring
duk_bool_t duk_del_prop_lstring(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_del_prop_string
duk_bool_t duk_del_prop_string(duk_context* ctx, duk_idx_t obj_idx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_destroy_heap
void duk_destroy_heap(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_dump_function
void duk_dump_function(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_dup
void duk_dup(duk_context* ctx, duk_idx_t from_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_dup_top
void duk_dup_top(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_enum
void duk_enum(duk_context* ctx, duk_idx_t obj_idx, duk_uint_t enum_flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_equals
duk_bool_t duk_equals(duk_context* ctx, duk_idx_t idx1, duk_idx_t idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_error
duk_ret_t duk_error(duk_context* ctx, duk_errcode_t err_code, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_error_raw
void duk_error_raw(duk_context* ctx, duk_errcode_t err_code, const(char)* filename, duk_int_t line, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_error_va
duk_ret_t duk_error_va(duk_context* ctx, duk_errcode_t err_code, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_error_va_raw
void duk_error_va_raw(duk_context* ctx, duk_errcode_t err_code, const(char)* filename, duk_int_t line, const(char)* fmt, va_list ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_eval
void duk_eval(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_error
duk_ret_t duk_eval_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_error_va
duk_ret_t duk_eval_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_lstring
void duk_eval_lstring(duk_context* ctx, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_lstring_noresult
void duk_eval_lstring_noresult(duk_context* ctx, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_noresult
void duk_eval_noresult(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_raw
duk_int_t duk_eval_raw(duk_context* ctx, const(char)* src_buffer, duk_size_t src_length, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_eval_string
void duk_eval_string(duk_context* ctx, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_eval_string_noresult
void duk_eval_string_noresult(duk_context* ctx, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_fatal
duk_ret_t duk_fatal(duk_context* ctx, const(char)* err_msg)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_fatal_raw
void duk_fatal_raw(duk_context* ctx, const(char)* err_msg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_free
void duk_free(duk_context* ctx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_free_raw
void duk_free_raw(duk_context* ctx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_freeze
void duk_freeze(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_gc
void duk_gc(duk_context* ctx, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_generic_error
duk_ret_t duk_generic_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_generic_error_va
duk_ret_t duk_generic_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_get_boolean
duk_bool_t duk_get_boolean(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_boolean_default
duk_bool_t duk_get_boolean_default(duk_context* ctx, duk_idx_t idx, duk_bool_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_buffer
void* duk_get_buffer(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_buffer_data
void* duk_get_buffer_data(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_buffer_data_default
void* duk_get_buffer_data_default(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size, void* def_ptr, duk_size_t def_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_buffer_default
void* duk_get_buffer_default(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size, void* def_ptr, duk_size_t def_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_c_function
duk_c_function duk_get_c_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_c_function_default
duk_c_function duk_get_c_function_default(duk_context* ctx, duk_idx_t idx, duk_c_function def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_context
duk_context* duk_get_context(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_context_default
duk_context* duk_get_context_default(duk_context* ctx, duk_idx_t idx, duk_context* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_current_magic
duk_int_t duk_get_current_magic(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_error_code
duk_errcode_t duk_get_error_code(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_finalizer
void duk_get_finalizer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_global_heapptr
duk_bool_t duk_get_global_heapptr(duk_context* ctx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_global_literal
auto duk_get_global_literal(T0 ctx, T1 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_get_global_literal_raw
duk_bool_t duk_get_global_literal_raw(duk_context* ctx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_global_lstring
duk_bool_t duk_get_global_lstring(duk_context* ctx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_global_string
duk_bool_t duk_get_global_string(duk_context* ctx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_heapptr
void* duk_get_heapptr(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_heapptr_default
void* duk_get_heapptr_default(duk_context* ctx, duk_idx_t idx, void* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_int
duk_int_t duk_get_int(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_int_default
duk_int_t duk_get_int_default(duk_context* ctx, duk_idx_t idx, duk_int_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_length
duk_size_t duk_get_length(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_lstring
const(char)* duk_get_lstring(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_lstring_default
const(char)* duk_get_lstring_default(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len, const(char)* def_ptr, duk_size_t def_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_magic
duk_int_t duk_get_magic(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_memory_functions
void duk_get_memory_functions(duk_context* ctx, duk_memory_functions* out_funcs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_now
duk_double_t duk_get_now(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_number
duk_double_t duk_get_number(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_number_default
duk_double_t duk_get_number_default(duk_context* ctx, duk_idx_t idx, duk_double_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_pointer
void* duk_get_pointer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_pointer_default
void* duk_get_pointer_default(duk_context* ctx, duk_idx_t idx, void* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop
duk_bool_t duk_get_prop(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_desc
void duk_get_prop_desc(duk_context* ctx, duk_idx_t obj_idx, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_heapptr
duk_bool_t duk_get_prop_heapptr(duk_context* ctx, duk_idx_t obj_idx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_index
duk_bool_t duk_get_prop_index(duk_context* ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_literal
auto duk_get_prop_literal(T0 ctx, T1 obj_idx, T2 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_get_prop_literal_raw
duk_bool_t duk_get_prop_literal_raw(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_lstring
duk_bool_t duk_get_prop_lstring(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prop_string
duk_bool_t duk_get_prop_string(duk_context* ctx, duk_idx_t obj_idx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_prototype
void duk_get_prototype(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_string
const(char)* duk_get_string(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_string_default
const(char)* duk_get_string_default(duk_context* ctx, duk_idx_t idx, const(char)* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_top
duk_idx_t duk_get_top(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_top_index
duk_idx_t duk_get_top_index(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_type
duk_int_t duk_get_type(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_type_mask
duk_uint_t duk_get_type_mask(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_uint
duk_uint_t duk_get_uint(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_get_uint_default
duk_uint_t duk_get_uint_default(duk_context* ctx, duk_idx_t idx, duk_uint_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop
duk_bool_t duk_has_prop(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop_heapptr
duk_bool_t duk_has_prop_heapptr(duk_context* ctx, duk_idx_t obj_idx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop_index
duk_bool_t duk_has_prop_index(duk_context* ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop_literal
auto duk_has_prop_literal(T0 ctx, T1 obj_idx, T2 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_has_prop_literal_raw
duk_bool_t duk_has_prop_literal_raw(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop_lstring
duk_bool_t duk_has_prop_lstring(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_has_prop_string
duk_bool_t duk_has_prop_string(duk_context* ctx, duk_idx_t obj_idx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_hex_decode
void duk_hex_decode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_hex_encode
const(char)* duk_hex_encode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_insert
void duk_insert(duk_context* ctx, duk_idx_t to_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_inspect_callstack_entry
void duk_inspect_callstack_entry(duk_context* ctx, duk_int_t level)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_inspect_value
void duk_inspect_value(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_instanceof
duk_bool_t duk_instanceof(duk_context* ctx, duk_idx_t idx1, duk_idx_t idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_array
duk_bool_t duk_is_array(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_boolean
duk_bool_t duk_is_boolean(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_bound_function
duk_bool_t duk_is_bound_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_buffer
duk_bool_t duk_is_buffer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_buffer_data
duk_bool_t duk_is_buffer_data(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_c_function
duk_bool_t duk_is_c_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_constructable
duk_bool_t duk_is_constructable(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_constructor_call
duk_bool_t duk_is_constructor_call(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_dynamic_buffer
duk_bool_t duk_is_dynamic_buffer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_ecmascript_function
duk_bool_t duk_is_ecmascript_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_error
auto duk_is_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_eval_error
auto duk_is_eval_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_external_buffer
duk_bool_t duk_is_external_buffer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_fixed_buffer
duk_bool_t duk_is_fixed_buffer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_function
duk_bool_t duk_is_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_lightfunc
duk_bool_t duk_is_lightfunc(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_nan
duk_bool_t duk_is_nan(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_null
duk_bool_t duk_is_null(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_null_or_undefined
int duk_is_null_or_undefined(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_number
duk_bool_t duk_is_number(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_object
duk_bool_t duk_is_object(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_pointer
duk_bool_t duk_is_pointer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_range_error
auto duk_is_range_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_reference_error
auto duk_is_reference_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_strict_call
duk_bool_t duk_is_strict_call(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_string
duk_bool_t duk_is_string(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_symbol
duk_bool_t duk_is_symbol(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_syntax_error
auto duk_is_syntax_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_thread
duk_bool_t duk_is_thread(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_type_error
auto duk_is_type_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_undefined
duk_bool_t duk_is_undefined(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_is_uri_error
auto duk_is_uri_error(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_is_valid_index
duk_bool_t duk_is_valid_index(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_join
void duk_join(duk_context* ctx, duk_idx_t count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_json_decode
void duk_json_decode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_json_encode
const(char)* duk_json_encode(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_load_function
void duk_load_function(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_map_string
void duk_map_string(duk_context* ctx, duk_idx_t idx, duk_map_char_function callback, void* udata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_new
void duk_new(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_next
duk_bool_t duk_next(duk_context* ctx, duk_idx_t enum_idx, duk_bool_t get_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_normalize_index
duk_idx_t duk_normalize_index(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_boolean
duk_bool_t duk_opt_boolean(duk_context* ctx, duk_idx_t idx, duk_bool_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_buffer
void* duk_opt_buffer(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size, void* def_ptr, duk_size_t def_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_buffer_data
void* duk_opt_buffer_data(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size, void* def_ptr, duk_size_t def_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_c_function
duk_c_function duk_opt_c_function(duk_context* ctx, duk_idx_t idx, duk_c_function def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_context
duk_context* duk_opt_context(duk_context* ctx, duk_idx_t idx, duk_context* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_heapptr
void* duk_opt_heapptr(duk_context* ctx, duk_idx_t idx, void* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_int
duk_int_t duk_opt_int(duk_context* ctx, duk_idx_t idx, duk_int_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_lstring
const(char)* duk_opt_lstring(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len, const(char)* def_ptr, duk_size_t def_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_number
duk_double_t duk_opt_number(duk_context* ctx, duk_idx_t idx, duk_double_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_pointer
void* duk_opt_pointer(duk_context* ctx, duk_idx_t idx, void* def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_string
const(char)* duk_opt_string(duk_context* ctx, duk_idx_t idx, const(char)* def_ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_opt_uint
duk_uint_t duk_opt_uint(duk_context* ctx, duk_idx_t idx, duk_uint_t def_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pcall
duk_int_t duk_pcall(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pcall_method
duk_int_t duk_pcall_method(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pcall_prop
duk_int_t duk_pcall_prop(duk_context* ctx, duk_idx_t obj_idx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pcompile
duk_int_t duk_pcompile(duk_context* ctx, duk_uint_t flags)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_pcompile_lstring
duk_int_t duk_pcompile_lstring(duk_context* ctx, duk_uint_t flags, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_pcompile_lstring_filename
duk_int_t duk_pcompile_lstring_filename(duk_context* ctx, duk_uint_t flags, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_pcompile_string
duk_int_t duk_pcompile_string(duk_context* ctx, duk_uint_t flags, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_pcompile_string_filename
duk_int_t duk_pcompile_string_filename(duk_context* ctx, duk_uint_t flags, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval
duk_int_t duk_peval(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval_lstring
duk_int_t duk_peval_lstring(duk_context* ctx, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval_lstring_noresult
duk_int_t duk_peval_lstring_noresult(duk_context* ctx, char* buf, duk_size_t len)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval_noresult
duk_int_t duk_peval_noresult(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval_string
duk_int_t duk_peval_string(duk_context* ctx, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_peval_string_noresult
duk_int_t duk_peval_string_noresult(duk_context* ctx, char* src)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_pnew
duk_int_t duk_pnew(duk_context* ctx, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pop
void duk_pop(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pop_2
void duk_pop_2(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pop_3
void duk_pop_3(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_pop_n
void duk_pop_n(duk_context* ctx, duk_idx_t count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_array
duk_idx_t duk_push_array(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_bare_object
duk_idx_t duk_push_bare_object(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_boolean
void duk_push_boolean(duk_context* ctx, duk_bool_t val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_buffer
void* duk_push_buffer(duk_context* ctx, duk_size_t size, duk_bool_t dynamic)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_buffer_object
void duk_push_buffer_object(duk_context* ctx, duk_idx_t idx_buffer, duk_size_t byte_offset, duk_size_t byte_length, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_buffer_raw
void* duk_push_buffer_raw(duk_context* ctx, duk_size_t size, duk_small_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_c_function
duk_idx_t duk_push_c_function(duk_context* ctx, duk_c_function func, duk_idx_t nargs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_c_lightfunc
duk_idx_t duk_push_c_lightfunc(duk_context* ctx, duk_c_function func, duk_idx_t nargs, duk_idx_t length, duk_int_t magic)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_context_dump
void duk_push_context_dump(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_current_function
void duk_push_current_function(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_current_thread
void duk_push_current_thread(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_dynamic_buffer
void* duk_push_dynamic_buffer(duk_context* ctx, duk_size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_error_object_raw
duk_idx_t duk_push_error_object_raw(duk_context* ctx, duk_errcode_t err_code, const(char)* filename, duk_int_t line, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_error_object_va
auto duk_push_error_object_va(T0 ctx, T1 err_code, T2 fmt, T3 ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_error_object_va_raw
duk_idx_t duk_push_error_object_va_raw(duk_context* ctx, duk_errcode_t err_code, const(char)* filename, duk_int_t line, const(char)* fmt, va_list ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_external_buffer
void duk_push_external_buffer(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_false
void duk_push_false(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_fixed_buffer
void* duk_push_fixed_buffer(duk_context* ctx, duk_size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_global_object
void duk_push_global_object(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_global_stash
void duk_push_global_stash(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_heap_stash
void duk_push_heap_stash(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_heapptr
duk_idx_t duk_push_heapptr(duk_context* ctx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_int
void duk_push_int(duk_context* ctx, duk_int_t val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_literal
auto duk_push_literal(T0 ctx, T1 cstring)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_push_literal_raw
const(char)* duk_push_literal_raw(duk_context* ctx, const(char)* str, duk_size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_lstring
const(char)* duk_push_lstring(duk_context* ctx, const(char)* str, duk_size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_nan
void duk_push_nan(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_new_target
void duk_push_new_target(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_null
void duk_push_null(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_number
void duk_push_number(duk_context* ctx, duk_double_t val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_object
duk_idx_t duk_push_object(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_pointer
void duk_push_pointer(duk_context* ctx, void* p)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_proxy
duk_idx_t duk_push_proxy(duk_context* ctx, duk_uint_t proxy_flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_sprintf
const(char)* duk_push_sprintf(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_string
const(char)* duk_push_string(duk_context* ctx, const(char)* str)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_this
void duk_push_this(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_thread_raw
duk_idx_t duk_push_thread_raw(duk_context* ctx, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_thread_stash
void duk_push_thread_stash(duk_context* ctx, duk_context* target_ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_true
void duk_push_true(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_uint
void duk_push_uint(duk_context* ctx, duk_uint_t val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_undefined
void duk_push_undefined(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_push_vsprintf
const(char)* duk_push_vsprintf(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_function_list
void duk_put_function_list(duk_context* ctx, duk_idx_t obj_idx, const(duk_function_list_entry)* funcs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_global_heapptr
duk_bool_t duk_put_global_heapptr(duk_context* ctx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_global_literal
auto duk_put_global_literal(T0 ctx, T1 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_put_global_literal_raw
duk_bool_t duk_put_global_literal_raw(duk_context* ctx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_global_lstring
duk_bool_t duk_put_global_lstring(duk_context* ctx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_global_string
duk_bool_t duk_put_global_string(duk_context* ctx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_number_list
void duk_put_number_list(duk_context* ctx, duk_idx_t obj_idx, const(duk_number_list_entry)* numbers)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop
duk_bool_t duk_put_prop(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop_heapptr
duk_bool_t duk_put_prop_heapptr(duk_context* ctx, duk_idx_t obj_idx, void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop_index
duk_bool_t duk_put_prop_index(duk_context* ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop_literal
auto duk_put_prop_literal(T0 ctx, T1 obj_idx, T2 key)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_put_prop_literal_raw
duk_bool_t duk_put_prop_literal_raw(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop_lstring
duk_bool_t duk_put_prop_lstring(duk_context* ctx, duk_idx_t obj_idx, const(char)* key, duk_size_t key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_put_prop_string
duk_bool_t duk_put_prop_string(duk_context* ctx, duk_idx_t obj_idx, const(char)* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_random
duk_double_t duk_random(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_range_error
duk_ret_t duk_range_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_range_error_va
duk_ret_t duk_range_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_realloc
void* duk_realloc(duk_context* ctx, void* ptr, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_realloc_raw
void* duk_realloc_raw(duk_context* ctx, void* ptr, duk_size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_reference_error
duk_ret_t duk_reference_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_reference_error_va
duk_ret_t duk_reference_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_remove
void duk_remove(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_replace
void duk_replace(duk_context* ctx, duk_idx_t to_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_boolean
duk_bool_t duk_require_boolean(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_buffer
void* duk_require_buffer(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_buffer_data
void* duk_require_buffer_data(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_c_function
duk_c_function duk_require_c_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_context
duk_context* duk_require_context(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_function
void duk_require_function(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_heapptr
void* duk_require_heapptr(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_int
duk_int_t duk_require_int(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_lstring
const(char)* duk_require_lstring(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_normalize_index
duk_idx_t duk_require_normalize_index(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_null
void duk_require_null(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_number
duk_double_t duk_require_number(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_object
void duk_require_object(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_object_coercible
void duk_require_object_coercible(duk_context* ctx, duk_idx_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_require_pointer
void* duk_require_pointer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_stack
void duk_require_stack(duk_context* ctx, duk_idx_t extra)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_stack_top
void duk_require_stack_top(duk_context* ctx, duk_idx_t top)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_string
const(char)* duk_require_string(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_top_index
duk_idx_t duk_require_top_index(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_type_mask
void duk_require_type_mask(duk_context* ctx, duk_idx_t index, duk_uint_t mask)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_require_uint
duk_uint_t duk_require_uint(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_undefined
void duk_require_undefined(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_require_valid_index
void duk_require_valid_index(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_resize_buffer
void* duk_resize_buffer(duk_context* ctx, duk_idx_t idx, duk_size_t new_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_resume
void duk_resume(duk_context* ctx, const(duk_thread_state)* state)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_safe_call
duk_int_t duk_safe_call(duk_context* ctx, duk_safe_call_function func, void* udata, duk_idx_t nargs, duk_idx_t nrets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_safe_to_lstring
const(char)* duk_safe_to_lstring(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_safe_to_string
auto duk_safe_to_string(T0 ctx, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_samevalue
duk_bool_t duk_samevalue(duk_context* ctx, duk_idx_t idx1, duk_idx_t idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_seal
void duk_seal(duk_context* ctx, duk_idx_t obj_idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_finalizer
void duk_set_finalizer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_global_object
void duk_set_global_object(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_length
void duk_set_length(duk_context* ctx, duk_idx_t idx, duk_size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_magic
void duk_set_magic(duk_context* ctx, duk_idx_t idx, duk_int_t magic)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_prototype
void duk_set_prototype(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_set_top
void duk_set_top(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_steal_buffer
void* duk_steal_buffer(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_strict_equals
duk_bool_t duk_strict_equals(duk_context* ctx, duk_idx_t idx1, duk_idx_t idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_substring
void duk_substring(duk_context* ctx, duk_idx_t idx, duk_size_t start_char_offset, duk_size_t end_char_offset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_suspend
void duk_suspend(duk_context* ctx, duk_thread_state* state)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_swap
void duk_swap(duk_context* ctx, duk_idx_t idx1, duk_idx_t idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_swap_top
void duk_swap_top(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_syntax_error
duk_ret_t duk_syntax_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_syntax_error_va
duk_ret_t duk_syntax_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_throw
duk_ret_t duk_throw(duk_context* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_throw_raw
void duk_throw_raw(duk_context* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_time_to_components
void duk_time_to_components(duk_context* ctx, duk_double_t timeval, duk_time_components* comp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_boolean
duk_bool_t duk_to_boolean(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_buffer
auto duk_to_buffer(T0 ctx, T1 idx, T2 out_size)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_to_buffer_raw
void* duk_to_buffer_raw(duk_context* ctx, duk_idx_t idx, duk_size_t* out_size, duk_uint_t flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_dynamic_buffer
auto duk_to_dynamic_buffer(T0 ctx, T1 idx, T2 out_size)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_to_fixed_buffer
auto duk_to_fixed_buffer(T0 ctx, T1 idx, T2 out_size)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_to_int
duk_int_t duk_to_int(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_int32
duk_int32_t duk_to_int32(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_lstring
const(char)* duk_to_lstring(duk_context* ctx, duk_idx_t idx, duk_size_t* out_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_null
void duk_to_null(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_number
duk_double_t duk_to_number(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_object
void duk_to_object(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_pointer
void* duk_to_pointer(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_primitive
void duk_to_primitive(duk_context* ctx, duk_idx_t idx, duk_int_t hint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_string
const(char)* duk_to_string(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_uint
duk_uint_t duk_to_uint(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_uint16
duk_uint16_t duk_to_uint16(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_uint32
duk_uint32_t duk_to_uint32(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_to_undefined
void duk_to_undefined(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_trim
void duk_trim(duk_context* ctx, duk_idx_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_type_error
duk_ret_t duk_type_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_type_error_va
duk_ret_t duk_type_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_uri_error
duk_ret_t duk_uri_error(duk_context* ctx, const(char)* fmt, ...)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_uri_error_va
duk_ret_t duk_uri_error_va(duk_context* ctx, const(char)* fmt, va_list ap)
Undocumented in source. Be warned that the author may not have intended to support it.
duk_xcopymove_raw
void duk_xcopymove_raw(duk_context* to_ctx, duk_context* from_ctx, duk_idx_t count, duk_bool_t is_copy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

DUK_API_ENTRY_STACK
enum DUK_API_ENTRY_STACK;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_ARRAYBUFFER
enum DUK_BUFOBJ_ARRAYBUFFER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_DATAVIEW
enum DUK_BUFOBJ_DATAVIEW;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_FLOAT32ARRAY
enum DUK_BUFOBJ_FLOAT32ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_FLOAT64ARRAY
enum DUK_BUFOBJ_FLOAT64ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_INT16ARRAY
enum DUK_BUFOBJ_INT16ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_INT32ARRAY
enum DUK_BUFOBJ_INT32ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_INT8ARRAY
enum DUK_BUFOBJ_INT8ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_NODEJS_BUFFER
enum DUK_BUFOBJ_NODEJS_BUFFER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_UINT16ARRAY
enum DUK_BUFOBJ_UINT16ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_UINT32ARRAY
enum DUK_BUFOBJ_UINT32ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_UINT8ARRAY
enum DUK_BUFOBJ_UINT8ARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUFOBJ_UINT8CLAMPEDARRAY
enum DUK_BUFOBJ_UINT8CLAMPEDARRAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_FLAG_DYNAMIC
enum DUK_BUF_FLAG_DYNAMIC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_FLAG_EXTERNAL
enum DUK_BUF_FLAG_EXTERNAL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_FLAG_NOZERO
enum DUK_BUF_FLAG_NOZERO;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_MODE_DONTCARE
enum DUK_BUF_MODE_DONTCARE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_MODE_DYNAMIC
enum DUK_BUF_MODE_DYNAMIC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_BUF_MODE_FIXED
enum DUK_BUF_MODE_FIXED;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_EVAL
enum DUK_COMPILE_EVAL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_FUNCEXPR
enum DUK_COMPILE_FUNCEXPR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_FUNCTION
enum DUK_COMPILE_FUNCTION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_NOFILENAME
enum DUK_COMPILE_NOFILENAME;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_NORESULT
enum DUK_COMPILE_NORESULT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_NOSOURCE
enum DUK_COMPILE_NOSOURCE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_SAFE
enum DUK_COMPILE_SAFE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_SHEBANG
enum DUK_COMPILE_SHEBANG;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_STRICT
enum DUK_COMPILE_STRICT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_COMPILE_STRLEN
enum DUK_COMPILE_STRLEN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_EQUIVYEAR
enum DUK_DATE_FLAG_EQUIVYEAR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_LOCALTIME
enum DUK_DATE_FLAG_LOCALTIME;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_NAN_TO_RANGE_ERROR
enum DUK_DATE_FLAG_NAN_TO_RANGE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_NAN_TO_ZERO
enum DUK_DATE_FLAG_NAN_TO_ZERO;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_ONEBASED
enum DUK_DATE_FLAG_ONEBASED;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_SEP_T
enum DUK_DATE_FLAG_SEP_T;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_SUB1900
enum DUK_DATE_FLAG_SUB1900;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_TIMESETTER
enum DUK_DATE_FLAG_TIMESETTER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_TOSTRING_DATE
enum DUK_DATE_FLAG_TOSTRING_DATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_TOSTRING_LOCALE
enum DUK_DATE_FLAG_TOSTRING_LOCALE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_TOSTRING_TIME
enum DUK_DATE_FLAG_TOSTRING_TIME;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_VALUE_SHIFT
enum DUK_DATE_FLAG_VALUE_SHIFT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_FLAG_YEAR_FIXUP
enum DUK_DATE_FLAG_YEAR_FIXUP;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_DAY
enum DUK_DATE_IDX_DAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_HOUR
enum DUK_DATE_IDX_HOUR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_MILLISECOND
enum DUK_DATE_IDX_MILLISECOND;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_MINUTE
enum DUK_DATE_IDX_MINUTE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_MONTH
enum DUK_DATE_IDX_MONTH;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_NUM_PARTS
enum DUK_DATE_IDX_NUM_PARTS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_SECOND
enum DUK_DATE_IDX_SECOND;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_WEEKDAY
enum DUK_DATE_IDX_WEEKDAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_IDX_YEAR
enum DUK_DATE_IDX_YEAR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MAX_ECMA_YEAR
enum DUK_DATE_MAX_ECMA_YEAR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MIN_ECMA_YEAR
enum DUK_DATE_MIN_ECMA_YEAR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_100M_DAYS
enum DUK_DATE_MSEC_100M_DAYS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_100M_DAYS_LEEWAY
enum DUK_DATE_MSEC_100M_DAYS_LEEWAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_DAY
enum DUK_DATE_MSEC_DAY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_HOUR
enum DUK_DATE_MSEC_HOUR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_MINUTE
enum DUK_DATE_MSEC_MINUTE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DATE_MSEC_SECOND
enum DUK_DATE_MSEC_SECOND;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEBUG_PROTOCOL_VERSION
enum DUK_DEBUG_PROTOCOL_VERSION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_C
enum DUK_DEFPROP_ATTR_C;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_E
enum DUK_DEFPROP_ATTR_E;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_W
enum DUK_DEFPROP_ATTR_W;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_WC
enum DUK_DEFPROP_ATTR_WC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_WE
enum DUK_DEFPROP_ATTR_WE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ATTR_WEC
enum DUK_DEFPROP_ATTR_WEC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_C
enum DUK_DEFPROP_C;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_C
enum DUK_DEFPROP_CLEAR_C;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_CONFIGURABLE
enum DUK_DEFPROP_CLEAR_CONFIGURABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_E
enum DUK_DEFPROP_CLEAR_E;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_ENUMERABLE
enum DUK_DEFPROP_CLEAR_ENUMERABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_W
enum DUK_DEFPROP_CLEAR_W;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_WC
enum DUK_DEFPROP_CLEAR_WC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_WE
enum DUK_DEFPROP_CLEAR_WE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_WEC
enum DUK_DEFPROP_CLEAR_WEC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CLEAR_WRITABLE
enum DUK_DEFPROP_CLEAR_WRITABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_CONFIGURABLE
enum DUK_DEFPROP_CONFIGURABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_E
enum DUK_DEFPROP_E;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_ENUMERABLE
enum DUK_DEFPROP_ENUMERABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_FORCE
enum DUK_DEFPROP_FORCE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_C
enum DUK_DEFPROP_HAVE_C;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_CONFIGURABLE
enum DUK_DEFPROP_HAVE_CONFIGURABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_E
enum DUK_DEFPROP_HAVE_E;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_ENUMERABLE
enum DUK_DEFPROP_HAVE_ENUMERABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_GETTER
enum DUK_DEFPROP_HAVE_GETTER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_SETTER
enum DUK_DEFPROP_HAVE_SETTER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_VALUE
enum DUK_DEFPROP_HAVE_VALUE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_W
enum DUK_DEFPROP_HAVE_W;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_WC
enum DUK_DEFPROP_HAVE_WC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_WE
enum DUK_DEFPROP_HAVE_WE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_WEC
enum DUK_DEFPROP_HAVE_WEC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_HAVE_WRITABLE
enum DUK_DEFPROP_HAVE_WRITABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_C
enum DUK_DEFPROP_SET_C;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_CONFIGURABLE
enum DUK_DEFPROP_SET_CONFIGURABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_E
enum DUK_DEFPROP_SET_E;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_ENUMERABLE
enum DUK_DEFPROP_SET_ENUMERABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_W
enum DUK_DEFPROP_SET_W;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_WC
enum DUK_DEFPROP_SET_WC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_WE
enum DUK_DEFPROP_SET_WE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_WEC
enum DUK_DEFPROP_SET_WEC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_SET_WRITABLE
enum DUK_DEFPROP_SET_WRITABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_W
enum DUK_DEFPROP_W;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_WC
enum DUK_DEFPROP_WC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_WE
enum DUK_DEFPROP_WE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_WEC
enum DUK_DEFPROP_WEC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_DEFPROP_WRITABLE
enum DUK_DEFPROP_WRITABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_ARRAY_INDICES_ONLY
enum DUK_ENUM_ARRAY_INDICES_ONLY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_EXCLUDE_STRINGS
enum DUK_ENUM_EXCLUDE_STRINGS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_INCLUDE_HIDDEN
enum DUK_ENUM_INCLUDE_HIDDEN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_INCLUDE_NONENUMERABLE
enum DUK_ENUM_INCLUDE_NONENUMERABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_INCLUDE_SYMBOLS
enum DUK_ENUM_INCLUDE_SYMBOLS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_NO_PROXY_BEHAVIOR
enum DUK_ENUM_NO_PROXY_BEHAVIOR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_OWN_PROPERTIES_ONLY
enum DUK_ENUM_OWN_PROPERTIES_ONLY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ENUM_SORT_ARRAY_INDICES
enum DUK_ENUM_SORT_ARRAY_INDICES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_ERROR
enum DUK_ERR_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_EVAL_ERROR
enum DUK_ERR_EVAL_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_NONE
enum DUK_ERR_NONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_RANGE_ERROR
enum DUK_ERR_RANGE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_REFERENCE_ERROR
enum DUK_ERR_REFERENCE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_SYNTAX_ERROR
enum DUK_ERR_SYNTAX_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_TYPE_ERROR
enum DUK_ERR_TYPE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_ERR_URI_ERROR
enum DUK_ERR_URI_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_EXEC_ERROR
enum DUK_EXEC_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_EXEC_SUCCESS
enum DUK_EXEC_SUCCESS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_GC_COMPACT
enum DUK_GC_COMPACT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_GIT_BRANCH
enum DUK_GIT_BRANCH;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_GIT_COMMIT
enum DUK_GIT_COMMIT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_GIT_DESCRIBE
enum DUK_GIT_DESCRIBE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_HINT_NONE
enum DUK_HINT_NONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_HINT_NUMBER
enum DUK_HINT_NUMBER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_HINT_STRING
enum DUK_HINT_STRING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_INVALID_INDEX
enum DUK_INVALID_INDEX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_LEVEL_DDDEBUG
enum DUK_LEVEL_DDDEBUG;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_LEVEL_DDEBUG
enum DUK_LEVEL_DDEBUG;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_LEVEL_DEBUG
enum DUK_LEVEL_DEBUG;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_ERROR
enum DUK_RET_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_EVAL_ERROR
enum DUK_RET_EVAL_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_RANGE_ERROR
enum DUK_RET_RANGE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_REFERENCE_ERROR
enum DUK_RET_REFERENCE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_SYNTAX_ERROR
enum DUK_RET_SYNTAX_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_TYPE_ERROR
enum DUK_RET_TYPE_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_RET_URI_ERROR
enum DUK_RET_URI_ERROR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_THREAD_NEW_GLOBAL_ENV
enum DUK_THREAD_NEW_GLOBAL_ENV;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_BOOLEAN
enum DUK_TYPE_BOOLEAN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_BUFFER
enum DUK_TYPE_BUFFER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_LIGHTFUNC
enum DUK_TYPE_LIGHTFUNC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_BOOLEAN
enum DUK_TYPE_MASK_BOOLEAN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_BUFFER
enum DUK_TYPE_MASK_BUFFER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_LIGHTFUNC
enum DUK_TYPE_MASK_LIGHTFUNC;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_NONE
enum DUK_TYPE_MASK_NONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_NULL
enum DUK_TYPE_MASK_NULL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_NUMBER
enum DUK_TYPE_MASK_NUMBER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_OBJECT
enum DUK_TYPE_MASK_OBJECT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_POINTER
enum DUK_TYPE_MASK_POINTER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_PROMOTE
enum DUK_TYPE_MASK_PROMOTE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_STRING
enum DUK_TYPE_MASK_STRING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_THROW
enum DUK_TYPE_MASK_THROW;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MASK_UNDEFINED
enum DUK_TYPE_MASK_UNDEFINED;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MAX
enum DUK_TYPE_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_MIN
enum DUK_TYPE_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_NONE
enum DUK_TYPE_NONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_NULL
enum DUK_TYPE_NULL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_NUMBER
enum DUK_TYPE_NUMBER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_OBJECT
enum DUK_TYPE_OBJECT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_POINTER
enum DUK_TYPE_POINTER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_STRING
enum DUK_TYPE_STRING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_TYPE_UNDEFINED
enum DUK_TYPE_UNDEFINED;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_VARARGS
enum DUK_VARARGS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DUK_VERSION
enum DUK_VERSION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

duk_function_list_entry
struct duk_function_list_entry
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_memory_functions
struct duk_memory_functions
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_number_list_entry
struct duk_number_list_entry
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_thread_state
struct duk_thread_state
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
duk_time_components
struct duk_time_components
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta