Strata - v1.4.10
    Preparing search index...

    Interface QueryResult<T>

    Query result with size property for efficient counting.

    interface QueryResult<T> {
        size: number;
        "[iterator]"(): Iterator<T, any, any>;
    }

    Type Parameters

    • T

    Hierarchy

    • Iterable<T>
      • QueryResult
    Index

    Properties

    Methods

    Properties

    size: number

    Number of entities matching the query (O(1) access).

    Methods

    • Returns Iterator<T, any, any>