Functions
Link copied to clipboard
fun bound(lower: JsAny?, upper: JsAny?, lowerOpen: Boolean = definedExternally, upperOpen: Boolean = definedExternally): IDBKeyRange
Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
Link copied to clipboard
Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
Link copied to clipboard
Returns a new IDBKeyRange spanning only key.
Link copied to clipboard
Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.