kups.core.data.wrappers
¶
WithCache
¶
Bases: Generic[TData, TCache]
Data paired with an associated cache.
Attributes:
| Name | Type | Description |
|---|---|---|
data |
TData
|
Primary data. |
cache |
TCache
|
Cached auxiliary values derived from or associated with |
Source code in src/kups/core/data/wrappers.py
WithIndices
¶
Bases: Batched, Generic[I, TData]
Data paired with an :class:Index selecting a subset of elements.
Attributes:
| Name | Type | Description |
|---|---|---|
indices |
Index[I]
|
Index array mapping entries to labeled elements. |
data |
TData
|
Associated data for the selected elements. |