for more information visit the package's GitHub page
Package contains the following modules:
Permet de générer toutes les combinaisons d'une liste
choices [1,2,3] ==
[[],[3],[2],[2,3],[3,2],[1],[1,3],[3,1],[1,2],[2,1],[1,2,3],[2,1,3],[2,3,1],[1,3,2],[3,1,2],[3,2,1]]
```elm
split [1,2,3] ==
[([1],[2,3]),([1,2],[3])]
````