packages feed

Agda-2.3.2.2: src/prototyping/modules/flat/Utils.hs

module Utils where

import Data.List

on f g x y = f (g x) (g y)

(f -*- g) (x, y) = (f x, g y)

intercalate x = concat . intersperse x