public interface IDBKeyRange
IDBKeyRange
interface of the IndexedDB API represents a continuous interval over some data type that is used for keys. Records can be retrieved from object stores and indexes using keys or a range of keys. You can limit the range using lower and upper bounds. For example, you can iterate over all values of a key between x and y.Modifier and Type | Method and Description |
---|---|
Object |
getLower() |
Object |
getUpper() |
boolean |
isLowerOpen() |
boolean |
isUpperOpen()
Returns false if the upper-bound value is included in the key range.
|
Copyright © 2018. All rights reserved.