in hpack/src/main/java/com/twitter/hpack/DynamicTable.java [69:79]
public HeaderField getEntry(int index) {
if (index <= 0 || index > length()) {
throw new IndexOutOfBoundsException();
}
int i = head - index;
if (i < 0) {
return headerFields[i + headerFields.length];
} else {
return headerFields[i];
}
}