sLimit method

SupaLimitStreamModifier<B, R> sLimit(
  1. int count
)

Limit the number of rows returned

Limits the result with the specified count.

count: The maximum number of rows to return.

Implementation

SupaLimitStreamModifier<B, R> sLimit(int count) =>
    SupaLimitStreamModifier(count, null);