addAll
Adds multiple SudokuSchema instances to the set from an array.
This function allows you to add a collection of SudokuSchema objects to the builder at once. The schemas are converted to a list internally before being added.
Example usage:
val schemasArray = arrayOf(...)
val schemas = sudokuSchemas {
addAll(schemasArray)
}
Content copied to clipboard
Return
This SudokuSchemas.Builder instance for chaining.
Parameters
schemas
The array of SudokuSchema objects to add.