com.github.mustachejava.util.InternalArrayList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Implementation of mustache.js for Java
package com.github.mustachejava.util;
import java.util.ArrayList;
import java.util.Collection;
/**
* Used internally for passing around the scopes.
*/
public class InternalArrayList extends ArrayList {
public InternalArrayList(Collection extends E> c) {
super(c.size());
addAll(c);
}
public InternalArrayList() {
super();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy