add

abstract fun add(tag: String)

Adds the given tag to this MutableTagSet.

Throws

if the given tag name is greater than 128 characters in length.


abstract fun add(vararg tags: String)

Adds the given tags to this MutableTagSet.

Throws

if any of the given tag names are greater than 128 characters in length.


abstract fun add(tags: Iterable<String>)

Adds the tags from the Iterable value to this MutableTagSet.

Throws

if any of the given tag names are greater than 128 characters in length.