Companion

Functions

Link copied to clipboard
fun bound(lower: JsAny?, upper: JsAny?, lowerOpen: Boolean = definedExternally, upperOpen: Boolean = definedExternally): IDBKeyRange

The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.

Link copied to clipboard
fun lowerBound(lower: JsAny?, open: Boolean = definedExternally): IDBKeyRange

The lowerBound() static method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.

Link copied to clipboard
fun only(value: JsAny?): IDBKeyRange

The only() static method of the IDBKeyRange interface creates a new key range containing a single value.

Link copied to clipboard
fun upperBound(upper: JsAny?, open: Boolean = definedExternally): IDBKeyRange

The upperBound() static method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.