skema/com.eignex.skema/SchemaDiff SchemaDiff data class SchemaDiff<C>(val added: Map<String, C>, val removed: Map<String, C>, val changed: Map<String, Pair<C, C>>)(source)Per-entry difference between two schemas. Equal entries on both sides are omitted. Members Constructors SchemaDiff Link copied to clipboard constructor(added: Map<String, C>, removed: Map<String, C>, changed: Map<String, Pair<C, C>>) Properties added Link copied to clipboard val added: Map<String, C>Entries present in the new schema but not the old. changed Link copied to clipboard val changed: Map<String, Pair<C, C>>Entries present in both schemas whose configs differ, mapped to (old, new). isEmpty Link copied to clipboard val isEmpty: BooleanTrue when there are no added, removed, or changed entries. removed Link copied to clipboard val removed: Map<String, C>Entries present in the old schema but not the new. SchemaDiff constructor(added: Map<String, C>, removed: Map<String, C>, changed: Map<String, Pair<C, C>>)(source) added val added: Map<String, C>(source)Entries present in the new schema but not the old. changed val changed: Map<String, Pair<C, C>>(source)Entries present in both schemas whose configs differ, mapped to (old, new). isEmpty val isEmpty: Boolean(source)True when there are no added, removed, or changed entries. removed val removed: Map<String, C>(source)Entries present in the old schema but not the new.