get methods: In the vanilla game, it first calls the contains method to check if the key exists, then invokes the get method. This results in two map lookups. This mod merges these two operations into one and applies inlining, which greatly improves the lookup speed.keySet paired with get with an approach that iterates keys and values simultaneously, thus avoiding a large number of lookups during iteration.get methods in other related classes.