set

inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Any)(source)

Adds a name/value pair to the formatted output in name=value format.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Boolean)(source)

Adds a name/value pair to the formatted output in name=value format, for the boolean primitive type.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Char)(source)

Adds a name/value pair to the formatted output in name=value format, for the char primitive type.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Double)(source)

Adds a name/value pair to the formatted output in name=value format, for the double primitive type.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Float)(source)

Adds a name/value pair to the formatted output in name=value format, for the float primitive type.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Int)(source)

Adds a name/value pair to the formatted output in name=value format, for the int primitive type.

See also


inline operator fun MoreObjects.ToStringHelper.set(name: String, value: Long)(source)

Adds a name/value pair to the formatted output in name=value format, for the long primitive type.

See also