Created
February 20, 2015 15:31
-
-
Save macintux/a798746b556fc9f7f399 to your computer and use it in GitHub Desktop.
Handy function for replacing an element in a list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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