IDBKeyRange

sealed external class IDBKeyRange(source)

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:

MDN Reference

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val lower: Any?

Returns lower bound, or undefined if none.

Link copied to clipboard

Returns true if the lower open flag is set, and false otherwise.

Link copied to clipboard
val upper: Any?

Returns upper bound, or undefined if none.

Link copied to clipboard

Returns true if the upper open flag is set, and false otherwise.

Functions

Link copied to clipboard
fun includes(key: Any?): Boolean

Returns true if key is included in the range, and false otherwise.