plus

operator fun plus(schema: SudokuSchema): SudokuSchemas

Adds a single SudokuSchema to this SudokuSchemas collection.

Return

A new SudokuSchemas collection containing the original schemas and the added schema.

Parameters

schema

The SudokuSchema to add.


operator fun plus(other: Collection<SudokuSchema>): SudokuSchemas

Adds a collection of SudokuSchema objects to this SudokuSchemas collection.

Return

A new SudokuSchemas collection containing the original schemas and the added schemas.

Parameters

other

The collection of SudokuSchema objects to add.


operator fun plus(other: SudokuSchemas): SudokuSchemas

Adds another SudokuSchemas collection to this SudokuSchemas collection.

Return

A new SudokuSchemas collection containing the original schemas and the added schemas from the other collection.

Parameters

other

The SudokuSchemas collection to add.