func github.com/emirpasic/gods/lists/arraylist.New

4 uses

	github.com/emirpasic/gods/lists/arraylist (current package)
		arraylist.go#L36: func New(values ...interface{}) *List {

	github.com/emirpasic/gods/trees/binaryheap
		binaryheap.go#L34: 	return &Heap{list: arraylist.New(), Comparator: comparator}
		binaryheap.go#L39: 	return &Heap{list: arraylist.New(), Comparator: utils.IntComparator}
		binaryheap.go#L44: 	return &Heap{list: arraylist.New(), Comparator: utils.StringComparator}