Values

@Serializable
data class Values(val values: List<Double>)

Represents a container for a list of numeric values.

This data class is designed to encapsulate a list of Double values, providing a structured way to pass around collections of numeric data. It can be used in various contexts where a simple, serializable list of numbers is required.

Constructors

Link copied to clipboard
constructor(values: List<Double>)

Properties

Link copied to clipboard
val values: List<Double>

A list of Double representing the numeric values contained within this instance.