Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuell/combine
A small Go program to create combinations of all values (strings) in a set of arrays
https://github.com/samuell/combine
Last synced: about 2 months ago
JSON representation
A small Go program to create combinations of all values (strings) in a set of arrays
- Host: GitHub
- URL: https://github.com/samuell/combine
- Owner: samuell
- License: mit
- Created: 2019-05-20T21:25:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-20T23:52:10.000Z (over 5 years ago)
- Last Synced: 2024-10-08T20:07:28.837Z (3 months ago)
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Combinator generator
====================Install
-------```bash
go get github.com/samuell/combine/...
```Usage
-----```bash
$ ./combine a,b x,y,z 1,2,3,4
a, a, a, a, a, a, a, a, a, a, a, a, b, b, b, b, b, b, b, b, b, b, b, b
x, x, x, x, y, y, y, y, z, z, z, z, x, x, x, x, y, y, y, y, z, z, z, z
1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4
```