Difference function
Open
enhancement
hacktoberfest
- Dominant language
- Go
- Stars
- 144
- Forks
- 11
- PR merge metrics
- No merged PRs in 30d
Description
The \\ function is list difference (non-associative). In the result of xs \\ ys, the first occurrence of each element of ys in turn (if any) has been removed from xs.
```haskell
(\\) :: Eq a => [a] -> [a] -> [a] infix 5
```
Contributor guide
Assessment
This issue has not been assessed yet.