Skip to content

feature

Classes:

Functions:

ArrayPrimitiveTypeSpec dataclass

ArrayPrimitiveTypeSpec(
    name: str,
    type_id: int,
    dtype_token: int,
    element_size_bytes: int | None,
    buffer_view_compatible: bool,
)

build_array_runtime_feature

build_array_runtime_feature() -> RuntimeFeature
Source code in src/irx/builder/runtime/array/feature.py
246
247
248
249
250
251
252
253
@typechecked
def build_array_runtime_feature() -> RuntimeFeature:
    """
    title: Build the builtin array runtime feature specification.
    returns:
      type: RuntimeFeature
    """
    return _build_runtime_feature("array")