checkIfTileHasChildren

abstract fun checkIfTileHasChildren(groupingTileId: String, childrenIds: List<String>): Boolean

Whether every id in childrenIds is currently a direct child of the container tile identified by groupingTileId — the mechanism behind CheckIfTileContainsChildren. Unlike the other methods on this interface, this doesn't fail when groupingTileId isn't found; it simply returns false.

Return

true if groupingTileId is found and every id in childrenIds is one of its current direct children.

Parameters

groupingTileId

id of the container tile to check.

childrenIds

ids that must all be present among that container's current children.