MCPcopy Create free account
hub / github.com/Effect-TS/effect / between

Function between

packages/platform/browser/src/IndexedDbQueryBuilder.ts:1474–1487  ·  view source on GitHub ↗
(
    this: IndexedDbQuery.DeletePartial<any, never>,
    lowerBound: IndexedDbQuery.ExtractIndexType<any, never>,
    upperBound: IndexedDbQuery.ExtractIndexType<any, never>,
    queryOptions?: { excludeLowerBound?: boolean; excludeUpperBound?: boolean }
  )

Source from the content-addressed store, hash-verified

1472 })
1473 },
1474 between(
1475 this: IndexedDbQuery.DeletePartial<any, never>,
1476 lowerBound: IndexedDbQuery.ExtractIndexType<any, never>,
1477 upperBound: IndexedDbQuery.ExtractIndexType<any, never>,
1478 queryOptions?: { excludeLowerBound?: boolean; excludeUpperBound?: boolean }
1479 ) {
1480 return makeDelete({
1481 delete: this as any,
1482 lowerBound,
1483 upperBound,
1484 excludeLowerBound: queryOptions?.excludeLowerBound ?? false,
1485 excludeUpperBound: queryOptions?.excludeUpperBound ?? false
1486 })
1487 }
1488}
1489
1490const makeDeletePartial = <

Callers 1

Order.test.tsFile · 0.85

Calls 3

makeDeleteFunction · 0.85
makeCountFunction · 0.85
makeSelectFunction · 0.85

Tested by

no test coverage detected