diff --git a/LICENSE b/LICENSE index 89ba484..83d53cd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 prequist +Copyright (c) 2022 Bella Fusari (bfu) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/README.md b/README.md index 25a4c3e..7eb7534 100644 --- a/README.md +++ b/README.md @@ -119,26 +119,25 @@ func MakeAndConvert() []int { These are probably a bit bloat over time, however, they're not horrendous (compared to other) implementations. -On Mac OSX (Monterey, M1) +On Mac OSX (Big Sur, M1) ### map_test.go ``` goos: darwin goarch: arm64 -pkg: github.com/prequist/gomap -BenchmarkPlain-8 12474228 100.0 ns/op -BenchmarkBox-8 759380 1523 ns/op -BenchmarkString-8 4029303 277.8 ns/op -BenchmarkBoxedString-8 782708 1501 ns/op -BenchmarkAdd-8 17820822 94.33 ns/op - +pkg: git.tcp.direct/bfu/gomap +BenchmarkPlain-8 5423301 221.0 ns/op +BenchmarkBox-8 937978 1240 ns/op +BenchmarkString-8 3070027 394.6 ns/op +BenchmarkBoxedString-8 762390 1489 ns/op +BenchmarkAdd-8 27079604 52.38 ns/op ``` ### iterator_test.go ``` -BenchmarkIteratorNext-8 1000000000 0.5661 ns/op +BenchmarkIteratorNext-8 1000000000 0.7843 ns/op ``` @@ -147,5 +146,5 @@ BenchmarkIteratorNext-8 1000000000 0.5661 ns/op ``` BenchmarkFilter BenchmarkFilter/Filter -BenchmarkFilter/Filter-8 1000000000 0.0000009 ns/op -``` \ No newline at end of file +BenchmarkFilter/Filter-8 1000000000 0.0000008 ns/op +``` diff --git a/filter_test.go b/filter_test.go index c7ea095..c3d5554 100644 --- a/filter_test.go +++ b/filter_test.go @@ -1,7 +1,7 @@ package gomap_test import ( - "github.com/prequist/gomap" + "git.tcp.direct/bfu/gomap" "reflect" "strings" "testing" diff --git a/map_test.go b/map_test.go index 8eafaac..c9880ce 100644 --- a/map_test.go +++ b/map_test.go @@ -1,7 +1,7 @@ package gomap_test import ( - "github.com/prequist/gomap" + "git.tcp.direct/bfu/gomap" "github.com/prequist/ptypes" "testing" ) diff --git a/slice_test.go b/slice_test.go index fa2286a..d70e95c 100644 --- a/slice_test.go +++ b/slice_test.go @@ -1,7 +1,7 @@ package gomap_test import ( - "github.com/prequist/gomap" + "git.tcp.direct/bfu/gomap" "testing" )