lamb

Types

pub type Partial(record) {
  Records(List(record), Step)
  End(List(record))
}

Constructors

  • Records(List(record), Step)
  • End(List(record))
pub type Step

Functions

pub fn all(
  from table: Table(a, b),
  where query: Query(a, b),
) -> List(c)
pub fn batch(
  from table: Table(a, b),
  by limit: Int,
  where query: Query(a, b),
) -> Partial(c)
pub fn continue(step: Step) -> Partial(a)
pub fn count(
  from table: Table(a, b),
  where query: Query(a, b),
) -> Int
Search Document