Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.List;

public class Main {
    public static <T> T removeAt(List<T> list, int pos) {
        return list.remove(pos);
    }

    public static <T> boolean remove(List<T> list, T value) {
        return list.remove(value);
    }
}