Lines Matching full:list
3 # This file contains list-manipulation functions.
5 # A list is defined here as a string of items separated by some delimiter. The PATH variable is on…
24 # Add the list_element to the list named in list_name.
27 # list_element The list element to be added.
28 # list_name The name of the list to be modified.
29 # delim The delimiter used to separate list elements.
30 …# position Indicates the position in the list where the new element should …
34 # The list is blank. Simply assign it the list_element value and return.
40 # Append the list_element to the back of the list and return.
45 # Append the list_element to the front of the list and return.
56 # Remove all occurrences of list_element from the list named in list_name.
59 # list_element The list element to be removed.
60 # list_name The name of the list to be modified.
61 # delim The delimiter used to separate list elements.
65 # Special case: The list contains one element which matches the specified list element: