Tuple.delete_at/2
defmodule Tuple do
def delete_at(tuple, index)
end
Deletes the element at the given index
from tuple
.
Raises ArgumentError
if index
is negative or greater than or equal to the length of tuple.
index
is zero-based.
defmodule Tuple do
def delete_at(tuple, index)
end
Deletes the element at the given index
from tuple
.
Raises ArgumentError
if index
is negative or greater than or equal to the length of tuple.
index
is zero-based.