# README
lol
👾 Devoted to creating a simple and efficient Go toolbox, and maintaining it continuously.
Installation
go get -u github.com/ifuryst/lol
Quick Start
package main
import (
"fmt"
"github.com/ifuryst/lol"
)
func main() {
res1 := lol.MergeSlice([]int{1, 4, 7}, []int{2, 5, 8}, []int{3, 6, 9})
res2 := lol.MergeSlice([]int{1}, []int{2, 5, 8}, []int{3, 6}, []int{4, 7, 9, 10})
fmt.Println(res1)
fmt.Println(res2)
// Output:
// [1 4 7 2 5 8 3 6 9]
// [1 2 5 8 3 6 4 7 9 10]
}
Usage
For more detailed usage, you can visit the wiki page.
Contributing
Contributions Welcome!
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'feat: add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
License
Released under the MIT License.