Skip to content

Tags: go-analyze/bulk

Tags

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
docs: godocs improvements - clear and concise

v0.0.10

Toggle v0.0.10's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: Add TransformErr variants

This expands the API to allow an error to be returned in transformation (using the TransformErr function signature).

Internally the logic was generally updated to handle a possible error return. This reduces code duplication, and benchmarking shows no measurable performance loss.

v0.0.9

Toggle v0.0.9's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: Add SliceFilterTransform to Filter and Transform simultaniously

While reviewing use this appears to be a pretty common process that may be able to benefit from our delayed filter allocations.
That said, because of the Transform operation allocations will always occur. Which does offer simpler inPlace concatenation optimizations.

v0.0.8

Toggle v0.0.8's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: SliceFilterInPlace accepts multiple slices, with additional opt…

…imizations to all cases of multiple slice usage

v0.0.7

Toggle v0.0.7's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: API consistency improvements + SliceFilter and SliceSplit to ac…

…cept multiple input slices

v0.0.6

Toggle v0.0.6's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: Add MapInvert to swap a maps keys and values

v0.0.5

Toggle v0.0.5's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: Add `SliceDifference` and `SliceIntersect`

These two functions help complete our set operations.  These also are provided using methods to minimize the memory allocations needed.

v0.0.4

Toggle v0.0.4's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
feat: Add SliceTransformToMap and improved performance

This change adds SliceTransformToMap in order to perform a SliceTransform and SliceToMap in a single operation.
Also included are improvements to a couple specific allocation calcluations, with added testing to ensure capacity is correctly calculated.

v0.0.3

Toggle v0.0.3's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
docs: Add build status badge to README.md

v0.0.2

Toggle v0.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
jentfoo Mike Jensen
test: Expand benchmarks with consistent inputs