Back to Exposed

LazySizedCollection

docs/api/exposed-jdbc/org.jetbrains.exposed.v1.jdbc/-lazy-sized-collection/index.html

1.2.04.6 KB
Original Source

LazySizedCollection

class LazySizedCollection<out T>(_delegate: SizedIterable<T>) : SizedIterable<T>

Represents a SizedIterable whose elements are only loaded on first access.

MembersMembers & Extensions

Constructors

LazySizedCollection

Link copied to clipboard

constructor(_delegate: SizedIterable<T>)

Properties

wrapper

Link copied to clipboard

val wrapper: List<T>

A list wrapping lazily loaded data.

Functions

copy

Link copied to clipboard

open override fun copy(): SizedIterable<T>

Returns a new SizedIterable that is a copy of the original.

count

Link copied to clipboard

open override fun count(): Long

Returns the number of elements stored.

empty

Link copied to clipboard

open override fun empty(): Boolean

Whether there are no elements stored.

forUpdate

Link copied to clipboard

open override fun forUpdate(option: ForUpdateOption = ForUpdateOption.ForUpdate): SizedIterable<T>

Returns a new SizedIterable with a locking read for the elements according to the rules specified by option.

isLoaded

Link copied to clipboard

fun isLoaded(): Boolean

Whether the collection already has data loaded by its delegate.

iterator

Link copied to clipboard

open operator override fun iterator(): Iterator<T>

limit

Link copied to clipboard

open override fun limit(count: Int): SizedIterable<T>

Returns a new SizedIterable containing only count elements.

mapLazy

Link copied to clipboard

infix fun <T, R> SizedIterable<T>.mapLazy(f: (T) -> R): SizedIterable<R>

Returns a SizedIterable containing the lazily evaluated results of applying the function f to each original element.

notForUpdate

Link copied to clipboard

open override fun notForUpdate(): SizedIterable<T>

Returns a new SizedIterable without any locking read for the elements.

offset

Link copied to clipboard

open override fun offset(start: Long): SizedIterable<T>

Returns a new SizedIterable containing only elements starting from the specified start.

orderBy

Link copied to clipboard

open override fun orderBy(vararg order: Pair<Expression<*>, SortOrder>): SizedIterable<T>

Returns a new SizedIterable with the elements sorted according to the specified expression order.

Generated by Dokka © 2026 Copyright