You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using :h Type.something, display information about the function(s) named something on type Type, preferably the source where they come from.
Example:
> :h Int.plus
/** Adds the other value to this value. */
public operator fun plus(other: Byte): Int
/** Adds the other value to this value. */
public operator fun plus(other: Short): Int
/** Adds the other value to this value. */
public operator fun plus(other: Int): Int
/** Adds the other value to this value. */
public operator fun plus(other: Long): Long
/** Adds the other value to this value. */
public operator fun plus(other: Float): Float
/** Adds the other value to this value. */
public operator fun plus(other: Double): Double
The text was updated successfully, but these errors were encountered:
When using
:h Type.something
, display information about the function(s) namedsomething
on typeType
, preferably the source where they come from.Example:
The text was updated successfully, but these errors were encountered: