MCPcopy Index your code
hub / github.com/tinyplex/tinybase / getTableCellIds

Function getTableCellIds

src/ui-svelte/functions.svelte.ts:363–372  ·  view source on GitHub ↗
(
  tableId: MaybeGetter<Id>,
  storeOrStoreId?: MaybeGetter<Store | Id | undefined>,
)

Source from the content-addressed store, hash-verified

361 );
362
363export const getTableCellIds = (
364 tableId: MaybeGetter<Id>,
365 storeOrStoreId?: MaybeGetter<Store | Id | undefined>,
366): {readonly current: Ids} =>
367 createListenable(
368 resolveStore(storeOrStoreId),
369 TABLE + CELL_IDS,
370 EMPTY_ARR,
371 () => [maybeGet(tableId)],
372 );
373
374export const hasTableCell = (
375 tableId: MaybeGetter<Id>,

Callers

nothing calls this directly

Calls 3

createListenableFunction · 0.70
resolveStoreFunction · 0.70
maybeGetFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…