Groovy – remove()

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments
Removes

Removes the element at the specified position in this List.

Syntax

Object remove(int index)

Parameters

Index โ€“ Index at which the value needs to be removed.

Return Value

The removed value.

Example

Following is an example of the usage of this method โˆ’

class Example {
   static void main(String[] args) {
      def lst = [11, 12, 13, 14];

      println(lst.remove(2));
      println(lst);
   }
}

When we run the above program, we will get the following result โˆ’

13 
[11, 12, 14]

Previous Page:-Click Here

Leave a Reply