pub fn all(
from table: Table(a, b),
where query: Query(a, b, c),
) -> List(d)
pub fn batch(
from table: Table(a, b),
by limit: Int,
where query: Query(a, b, c),
) -> Partial(d)
pub fn continue(step: Step) -> Partial(a)
pub fn count(
from table: Table(a, b),
where query: Query(a, b, c),
) -> Int
pub fn create(config: Config) -> Result(Table(a, b), Error)
pub fn delete(table: Table(a, b)) -> Nil
pub fn erase(
table: Table(a, b),
where query: Query(a, b, c),
) -> Int
pub fn from_name(name: String) -> Result(Reference, Nil)
pub fn insert(table: Table(a, b), index: a, record: b) -> Nil
pub fn is_alive(table: Table(a, b)) -> Bool