concepts.dsl.value.ListValue# class ListValue[source]# Bases: ValueBase A list of values. Methods Attributes element_type dtype The type of the value. values The values. __init__(dtype, values)[source]# Initialize the Value object. Parameters: dtype (ListType) – the type of the value. values (Sequence[Any]) – the values. __len__()[source]# __new__(**kwargs)# dtype: ListType# The type of the value. property element_type# values: tuple# The values.