Skip to content

Types

MeasurementArray

Bases: Generic[NumRows, NumCols]

__getitem__

__getitem__(indices: tuple[int, int]) -> MeasurementResult

Get a measurement result from the array using the given indices.

Source code in src/bloqade/shuttle/dialects/measure/types.py
17
18
19
20
21
22
23
def __getitem__(self, indices: tuple[int, int]) -> MeasurementResult:
    """
    Get a measurement result from the array using the given indices.
    """
    raise NotImplementedError(
        "This Class is a placeholder and should be replaced with the actual implementation."
    )