NonStop SOAP 4.1 User's Manual

e
is the element whose inclusion in the list is being tested.
Return Values:
This function returns true if the list contains e.
The axutil_array_list_add() Function
Synopsis:
AXIS2_EXTERN axis2_status_t axutil_array_list_add
( struct axutil_array_list * array_list,
const axutil_env_t * env,
const void * e )
Description:
This function appends the supplied element to the end of this list. The element, e, can be a pointer
of any type or NULL.
Parameters:
array_list
is a pointer to the array list.
env
is a pointer to an environment structure. It cannot have a NULL value.
e
is the element whose inclusion in the list is being tested
Return Values:
AXIS2_SUCCESS on success.
AXIS2_FAILURE on failure.
The axutil_array_list_add_at()Function
Synopsis:
AXIS2_EXTERN axis2_status_t axutil_array_list_add_at
( struct axutil_array_list * array_list,
const axutil_env_t * env,
const int index,
const void * e )
Description:
This function adds the supplied element at the specified index, shifting all elements currently at that
index or higher one to the right. The element, e, can be a pointer of any type or NULL.
Parameters:
array_list
is a pointer to the array list.
env
is a pointer to an environment structure. It cannot have a NULL value.
index
is the index at which the element is being added.
e
is the element whose inclusion in the list is being tested.
Return Values:
AXIS2_SUCCESS on success.
AXIS2_FAILURE on failure.
Utilities 389