| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | >> Syntax << | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
| Name | function2operator |
|---|---|
| Description | backquotes coerce a function to an infix operator |
| Related: | |
| Bibliography: | Sections [ A Gentle Introduction to Haskell ] |
Input: 4 `mod` 2
Output: 0
Input: [1,2,3] `zip` [4,5,6]
Output: [(1,4),(2,5),(3,6)]