limit method

SupaLimitModifier<B, R> limit(
  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

SupaLimitModifier<B, R> limit(int count) => SupaLimitModifier(count, null);