A key range can be a single value or a range with upper and lower bounds or endpoints. If the key range has both upper and lower bounds, then it is bounded; if it has no bounds, it is unbounded. A bounded key range can either be open (the endpoints are excluded) or closed (the endpoints are included). To retrieve all keys within a certain range, you can use the following code constructs:

Documentation IDBKeyRange by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See:

Variables

read onlylower:Dynamic

Lower bound of the key range.

read onlylowerOpen:Bool

Returns false if the lower-bound value is included in the key range.

read onlyupper:Dynamic

Upper bound of the key range.

read onlyupperOpen:Bool

Returns false if the upper-bound value is included in the key range.

Methods

includes (key:Dynamic):Bool

Throws:

null

DOMError

Static methods

staticbound (lower:Dynamic, upper:Dynamic, lowerOpen:Bool = false, upperOpen:Bool = false):KeyRange

Throws:

null

DOMError

staticlowerBound (lower:Dynamic, open:Bool = false):KeyRange

Throws:

null

DOMError

staticonly (value:Dynamic):KeyRange

Throws:

null

DOMError

staticupperBound (upper:Dynamic, open:Bool = false):KeyRange

Throws:

null

DOMError