| decode/3 | |
| delta/3 | |
| encode/3 | |
| get_type/1 | Return the internal type. |
| is_bottom/2 | Is bottom?. |
| is_inflation/3 | Is inflation?. |
| is_strict_inflation/3 | Is strict inflation?. |
| merge/3 | Call the correct merge function for a given type. |
| new/1 | Initialize a new variable for a given type. |
| query/2 | Return the value of a CRDT. |
| threshold_met/3 | Determine if a threshold is met. |
| update/4 | Use the proper type for performing an update. |
decode(Type, Encoding, Value) -> any()
delta(Type, A, B) -> any()
encode(Type, Encoding, Value) -> any()
get_type(T) -> any()
Return the internal type.
is_bottom(Type, Value) -> any()
Is bottom?
is_inflation(Type, Previous, Current) -> any()
Is inflation?
is_strict_inflation(Type, Previous, Current) -> any()
Is strict inflation?
merge(Type, Value0, Value) -> any()
Call the correct merge function for a given type.
new(Type) -> any()
Initialize a new variable for a given type.
query(Type, Value) -> any()
Return the value of a CRDT.
threshold_met(Type, Value, Threshold) -> any()
Determine if a threshold is met.
update(Type, Operation, Actor, Value) -> any()
Use the proper type for performing an update.
Generated by EDoc