List::remove

Remove an item from given index and return self.

Type

remove :: [a] -> Int -> [a]

Examples

l = [1, 2, 3]
println$( l.remove$(2) )