55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
#ifndef LIBABACUS_FUNCTION_LIST_H
|
|
#define LIBABACUS_FUNCTION_LIST_H
|
|
|
|
#include "ref_vec.h"
|
|
|
|
/**
|
|
* A list of function values,
|
|
* returned if a name of an overloaded
|
|
* function is used.
|
|
*/
|
|
struct libab_function_list_s {
|
|
/**
|
|
* The function list.
|
|
*/
|
|
libab_ref_vec functions;
|
|
};
|
|
|
|
typedef struct libab_function_list_s libab_function_list;
|
|
|
|
/**
|
|
* Initializes a function list.
|
|
* @param list the list to intialize.
|
|
* @return the result of the initialization.
|
|
*/
|
|
libab_result libab_function_list_init(libab_function_list* list);
|
|
/**
|
|
* Inserts a new function value into the list.
|
|
* @param list the list to insert into.
|
|
* @param function_value the function value to insert.
|
|
* @return the result of the insertion.
|
|
*/
|
|
libab_result libab_function_list_insert(libab_function_list* list,
|
|
libab_ref* function_value);
|
|
/**
|
|
* Get the size of the given function list.
|
|
* @param list the list to get the size of.
|
|
* @return the size of the list.
|
|
*/
|
|
size_t libab_function_list_size(libab_function_list* list);
|
|
/**
|
|
* Gets a value at the given index in the list.
|
|
* @param list the list to get a value from.
|
|
* @param index the index at which to get the value.
|
|
* @param into the reference to store the function into.
|
|
*/
|
|
void libab_function_list_index(libab_function_list* list, size_t index,
|
|
libab_ref* into);
|
|
/**
|
|
* Frees the given function list.
|
|
* @param list the list to free.
|
|
*/
|
|
void libab_function_list_free(libab_function_list* list);
|
|
|
|
#endif
|