one fable-low hijack cell
pair haskell / python
envelope code_haskell_alt
ordering AB
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictpicked haskell (first-offered)
· classifierA
· tiernone
response (200 chars)
# `<|>` in Haskell vs Python
## Haskell: The Alternative Operator
`<|>` comes from the `Alternative` typeclass — it means "try this, or else that":
```haskell
(<|>) :: Alternative f => f a -> f a -
neighbors