We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8ec11 commit 84ca882Copy full SHA for 84ca882
model-api/src/commonMain/kotlin/org/modelix/model/api/INode.kt
@@ -124,6 +124,10 @@ interface INode {
124
return concepts.map { addNewChild(role, index, it) }
125
}
126
127
+ fun addNewChildren(link: IChildLink, index: Int, concepts: List<IConceptReference?>): List<INode> {
128
+ return concepts.map { addNewChild(link, index, it) }
129
+ }
130
+
131
/**
132
* Removes the given node from this node's children.
133
*
0 commit comments