![JAR search and dependency download from the Maven repository](/logo.png)
org.jhotdraw8.icollection.impl.champmap.MutableBitmapIndexedNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.icollection Show documentation
Show all versions of org.jhotdraw8.icollection Show documentation
JHotDraw8 Immutable Collections
The newest version!
/*
* @(#)MutableBitmapIndexedNode.java
* Copyright © 2022 The authors and contributors of JHotDraw. MIT License.
*/
package org.jhotdraw8.icollection.impl.champmap;
import org.jhotdraw8.icollection.impl.IdentityObject;
final class MutableBitmapIndexedNode extends BitmapIndexedNode {
private final IdentityObject mutator;
MutableBitmapIndexedNode(IdentityObject mutator, int nodeMap, int dataMap, Object[] nodes) {
super(nodeMap, dataMap, nodes);
this.mutator = mutator;
}
@Override
protected IdentityObject getMutator() {
return mutator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy