libabacus/include/function_list.h

55 lines
1.5 KiB
C
Raw Permalink Normal View History

#ifndef LIBABACUS_FUNCTION_LIST_H
#define LIBABACUS_FUNCTION_LIST_H
#include "ref_vec.h"
2018-05-17 15:33:38 -07:00
/**
* A list of function values,
* returned if a name of an overloaded
* function is used.
*/
struct libab_function_list_s {
2018-05-17 15:33:38 -07:00
/**
* The function list.
*/
libab_ref_vec functions;
};
typedef struct libab_function_list_s libab_function_list;
2018-05-17 15:33:38 -07:00
/**
* 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);
2018-05-17 15:33:38 -07:00
/**
* 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.
*/
2018-05-26 21:55:30 -07:00
void libab_function_list_index(libab_function_list* list, size_t index,
libab_ref* into);
2018-05-17 15:33:38 -07:00
/**
* Frees the given function list.
* @param list the list to free.
*/
void libab_function_list_free(libab_function_list* list);
#endif