ZVON > References > Haskell reference
| 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 ]

Example 1

Input: 4 `mod` 2

Output: 0

Example 2

Input: [1,2,3] `zip` [4,5,6]

Output: [(1,4),(2,5),(3,6)]