Skip to content

Instantly share code, notes, and snippets.

@macintux
Created February 20, 2015 15:31
Show Gist options
  • Save macintux/a798746b556fc9f7f399 to your computer and use it in GitHub Desktop.
Save macintux/a798746b556fc9f7f399 to your computer and use it in GitHub Desktop.
Handy function for replacing an element in a list
%% Replace the item at `Index' in `List' with `Element'.
%% Zero-based indexing. Deal with it.
-spec replace_list_element(non_neg_integer(), term(), list()).
replace_list_element(Index, Element, List) ->
{Prefix, Suffix} = lists:split(Index, List),
Prefix ++ [Element] ++ tl(Suffix).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment