From 44be6e6cd7671dd243056107ffa6201504f7fbce Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Sun, 25 Jun 2023 15:50:38 -0400 Subject: Update a number of things --- src/main/java/bjc/esodata/KeyedList.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/main/java/bjc/esodata/KeyedList.java') diff --git a/src/main/java/bjc/esodata/KeyedList.java b/src/main/java/bjc/esodata/KeyedList.java index 5b0d6cc..5a381e1 100644 --- a/src/main/java/bjc/esodata/KeyedList.java +++ b/src/main/java/bjc/esodata/KeyedList.java @@ -19,12 +19,23 @@ package bjc.esodata; import java.util.*; +/** + * Implements a keyed list. + * + * @author bjcul + * + * @param The type of the key + * @param The type of the value + */ public class KeyedList implements Iterable { private List backing; private Map indices; private int currIdx = 0; + /** + * Create a new keyed list + */ public KeyedList() { backing = new ArrayList<>(); indices = new HashMap<>(); -- cgit v1.2.3