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

Function hasTableCell

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

Source from the content-addressed store, hash-verified

372 );
373
374export const hasTableCell = (
375 tableId: MaybeGetter<Id>,
376 cellId: MaybeGetter<Id>,
377 storeOrStoreId?: MaybeGetter<Store | Id | undefined>,
378): {readonly current: boolean} =>
379 createListenable(
380 resolveStore(storeOrStoreId),
381 TABLE + CELL,
382 false,
383 () => [maybeGet(tableId), maybeGet(cellId)],
384 1,
385 );
386
387export const getRowCount = (
388 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…