elm-explorations / elm-explorations/test
Add more Fuzz functions for Array
Open
- Dominant language
- Elm
- Stars
- 244
- Forks
- 40
- Avg merge
- 1d 23h
- Merged PRs (30d)
- 2
Description
There are multiple fuzzers for `List` that could benefit `Array` as well:
```elm
-- Based on listOfLength
arrayOfLength : Int -> Fuzzer a -> Fuzzer (Array a)
-- Based on listOfLengthBetween
arrayOfLengthBetween : Int -> Int -> Fuzzer a -> Fuzzer (Array a)
-- Based on shuffledList
shuffledArray : List a -> Fuzzer (Array a)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.