View Source Indexed.UniquesBundle (Indexed v0.3.4)
A piece of data defining unique values of a field under a prefilter.
It tracks similar data in two ways. A map is tracked with each unique value found as keys and the number of occurrences found in the data set as vals. This is useful for quick updates to the data, while the second piece of data mainained, a list of the map's keys, is a handy, ascending-sorted list of these values.
Link to this section Summary
Types
Occurrences of each value (map key) under a prefilter.
Indicates that a value was added or removed from the bundle's list.
A 3-element tuple defines unique values under a prefilter
Functions
Add a value to the uniques bundle.
Create a new uniques bundle.
Store unique values for a field in a prefilter (as a list and map).
Remove value from the uniques bundle.
Link to this section Types
@type counts_map() :: %{required(any()) => non_neg_integer()}
Occurrences of each value (map key) under a prefilter.
Indicates that a value was added or removed from the bundle's list.
@type t() :: {counts_map(), list :: [any()] | nil, events :: [event()], last_instance_removed? :: boolean()}
A 3-element tuple defines unique values under a prefilter:
- Map of discrete values to their occurrence counts.
- List of discrete values. (Keys of #1's map.)
- A list of events which occurred when processing the bundle.
- A boolean which is true when
remove/2
is used and it has taken the last remaining instance of the given value.
Link to this section Functions
Add a value to the uniques bundle.
@spec get(Indexed.t(), atom(), Indexed.prefilter(), atom()) :: t()
new(counts_map \\ %{}, list \\ [], events \\ [], last_instance_removed? \\ false)
View Source@spec new(counts_map(), [any()] | nil, [event()], boolean()) :: t()
Create a new uniques bundle.
put(bundle, index_ref, entity_name, prefilter, field_name, opts \\ [])
View SourceStore unique values for a field in a prefilter (as a list and map).
If the :new?
option is true, then the bundle will be inserted for sure.
Remove value from the uniques bundle.