View Source Liquex.Collection protocol (liquex v0.13.1)

Summary

Types

Functions

Link to this function

limit(collection, limit)

View Source
@spec limit(t(), pos_integer()) :: t()
Link to this function

offset(collection, offset)

View Source
@spec offset(t(), pos_integer()) :: t()
@spec reverse(t()) :: t()
@spec sort(t()) :: t()
Link to this function

sort(collection, field_name)

View Source
@spec sort(t(), String.t()) :: t()
Link to this function

sort_case_insensitive(collection)

View Source
@spec sort_case_insensitive(t()) :: t()
Link to this function

sort_case_insensitive(collection, field_name)

View Source
@spec sort_case_insensitive(t(), String.t()) :: t()
Link to this function

to_enumerable(collection)

View Source
@spec to_enumerable(t()) :: Enumerable.t()
Link to this function

where(collection, field_name)

View Source
@spec where(t(), String.t()) :: t()
Link to this function

where(collection, field_name, value)

View Source
@spec where(t(), String.t(), term()) :: t()