Package edu. duke. cs. osprey. gui. tools
Types
Link copied to clipboard
class CombineCollisionException(key: String, val1: String, val2: String) : RuntimeException
Content copied to clipboard
Link copied to clipboard
class UnsupportedClassException(msg: String, obj: Any) : RuntimeException
Content copied to clipboard
Functions
Link copied to clipboard
fun <K, V> combineMaps(map1: Map<K, V>, preferKeys1: Set<K>, ignoreKeys1: Set<K>, map2: Map<K, V>, preferKeys2: Set<K>, ignoreKeys2: Set<K>, into: MutableMap<K, V> = HashMap()): Map<K, V>
Content copied to clipboard
Combine two maps together. Duplicate entries are collapsed into a single entry. It the same key maps to multiple values, an exception is thrown.
Link copied to clipboard