12345678910111213141516171819202122-------------------------------------------------------------------------- The Agda standard library---- A module used for creating function pipelines, see-- README.Function.Reasoning for examples------------------------------------------------------------------------ {-# OPTIONS --cubical-compatible --safe #-} module Function.Reasoning where open import Function.Base using (_∋_) -- Need to give _∋_ a new name as syntax cannot contain underscoresinfixl 0 ∋-syntax∋-syntax = _∋_ -- Create ∶ syntaxsyntax ∋-syntax A a = a ∶ A -- Export pipeline functionsopen import Function.Base public using (_|>_; _|>′_)