- (jsontime) Added helpers for unix microseconds and nanoseconds, as well as alternative structs that parse JSON strings instead of ints (all precisions).
- (exzerolog) Added generic helpers to generate
*zerolog.Array
s out of slices. - (exslices) Added helpers for finding the difference between two slices.
Diff
is a generic implementation using maps which works with anycomparable
types (i.e. types that have the equality operator==
defined).SortedDiff
is a more efficient implementation which can take any types (using the help of acompare
function), but the input must be sorted and shouldn't have duplicates.
Initial release