PlutusTx.Base
Description
Plutus Tx basic functions.
fst ∷ (a, b) → a Source #
Plutus Tx version of fst
fst
snd ∷ (a, b) → b Source #
Plutus Tx version of snd
snd
curry ∷ ((a, b) → c) → a → b → c Source #
uncurry ∷ (a → b → c) → (a, b) → c Source #
($) ∷ (a → b) → a → b infixr 0 Source #
Plutus Tx version of 'Data.Function.($)'.
flip ∷ (a → b → c) → b → a → c Source #
Plutus Tx version of flip.
flip
until ∷ (a → Bool) → (a → a) → a → a Source #
Plutus Tx version of until.
until
(.) ∷ (b → c) → (a → b) → a → c infixr 9 Source #
Plutus Tx version of 'Prelude.(.)'.
const ∷ a → b → a Source #
Plutus Tx version of const.
const
id ∷ a → a Source #
Plutus Tx version of id.
id