package js.html.idb
Available on jsA 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:
read only lower:DynamicLower bound of the key range.
read only lowerOpen:BoolReturns false if the lower-bound value is included in the key range.
read only upper:DynamicUpper bound of the key range.
read only upperOpen:BoolReturns false if the upper-bound value is included in the key range.
includes (key:Dynamic):BoolThrows:
null |
DOMError |
|---|
static bound (lower:Dynamic, upper:Dynamic, lowerOpen:Bool = false, upperOpen:Bool = false):KeyRangeThrows:
null |
DOMError |
|---|
static lowerBound (lower:Dynamic, open:Bool = false):KeyRangeThrows:
null |
DOMError |
|---|
static only (value:Dynamic):KeyRangeThrows:
null |
DOMError |
|---|
static upperBound (upper:Dynamic, open:Bool = false):KeyRangeThrows:
null |
DOMError |
|---|
© 2005–2018 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/idb/KeyRange.html