-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Achille Roussel <[email protected]>
- Loading branch information
1 parent
a016981
commit 2e567c5
Showing
2 changed files
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# kway-go [![Go Reference](https://pkg.go.dev/badge/github.com/achille-roussel/kway-go.svg)](https://pkg.go.dev/github.com/achille-roussel/kway-go) | ||
K-way merge with Go 1.22 range functions | ||
K-way merge with Go 1.23 range functions | ||
|
||
[bboreham]: https://github.com/bboreham | ||
[godoc]: https://pkg.go.dev/github.com/achille-roussel/[email protected]#pkg-examples | ||
|
@@ -12,14 +12,6 @@ This package is intended to be used as a library and installed with: | |
go get github.com/achille-roussel/kway-go | ||
``` | ||
|
||
:warning: The package depends on Go 1.22 and enabling the rangefunc experiment. | ||
|
||
To enable the rangefunc experiment, set the GOEXPERIMENT environment variable in | ||
the shell that executes the go commands: | ||
```sh | ||
export GOEXPERIMENT=rangefunc | ||
``` | ||
|
||
## Usage | ||
|
||
The package contains variations of the K-way merge algorithm for different | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/achille-roussel/kway-go | ||
|
||
go 1.22 | ||
go 1.23 |