Package-level declarations

Types

Link copied to clipboard
data class ClassName(val name: String) : Name

The name of a primitive or user-defined class.

Link copied to clipboard

The display style of ClassNames.

Link copied to clipboard
object Get : QueryName

Returns the value stored at a given index in a container.

Link copied to clipboard
interface MethodName : Name

An object method.

Link copied to clipboard

The display style of MethodNames.

Link copied to clipboard
data class Modify(val operator: BinaryOperator) : UpdateName

Applies a binary operator to the current value and the given argument, and sets the stored value to the result.

Link copied to clipboard
interface QueryName : MethodName

A read-only method that returns information about the object without modifying it.

Link copied to clipboard
object Set : UpdateName

Replaces the value stored at a given index in a container with a new value.

Link copied to clipboard

A write-only methods that modifies an object but returns no result.

Properties

Link copied to clipboard

A class that stores a single unmodifiable value.

Link copied to clipboard

A class that stores a single modifiable value.

Link copied to clipboard

A class that stores a list of mutable cells.