Closed M4tteoP closed 1 week ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 81.64%. Comparing base (
12d554b
) to head (135eddb
). Report is 1 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Avoids allocations when calling
transformArg()
withoutMultimatch
. This has been done by specializing thetransformArg
into:transformArg(..)
: which returns just an individual string with all the transformations computed. It permits to avoid allocating slices with just one element.transformMultiMatchArg
: which returns a slice of strings that include all the unique intermediate transformationsBefore:
After: