github.com/emirpasic/gods/lists/arraylist.List.Get (method)

10 uses

	github.com/emirpasic/gods/lists/arraylist (current package)
		arraylist.go#L55: func (list *List) Get(index int) (interface{}, bool) {

	github.com/emirpasic/gods/trees/binaryheap
		binaryheap.go#L67: 	value, ok = heap.list.Get(0)
		binaryheap.go#L81: 	return heap.list.Get(0)
		binaryheap.go#L128: 		leftValue, _ := heap.list.Get(leftIndex)
		binaryheap.go#L129: 		rightValue, _ := heap.list.Get(rightIndex)
		binaryheap.go#L133: 		indexValue, _ := heap.list.Get(index)
		binaryheap.go#L134: 		smallerValue, _ := heap.list.Get(smallerIndex)
		binaryheap.go#L150: 		indexValue, _ := heap.list.Get(index)
		binaryheap.go#L151: 		parentValue, _ := heap.list.Get(parentIndex)
		iterator.go#L48: 	value, _ := iterator.heap.list.Get(iterator.index)