123456789101112131415161718192021222324-------------------------------------------------------------------------- The Agda standard library---- The binary relation defined by a constant------------------------------------------------------------------------ {-# OPTIONS --cubical-compatible --safe #-} module Relation.Binary.Construct.Constant.Core where open import Levelopen import Relation.Binary.Core using (REL) private variable a b c : Level A : Set a B : Set b -------------------------------------------------------------------------- Definition Const : Set c → REL A B cConst I = λ _ _ → I