A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://agda.github.io/agda-stdlib/master/Relation.Unary.Indexed.html below:

Relation.Unary.Indexed

Relation.Unary.Indexed
------------------------------------------------------------------------
-- The Agda standard library
--
-- Indexed unary relations
------------------------------------------------------------------------

{-# OPTIONS --cubical-compatible --safe #-}

module Relation.Unary.Indexed  where

open import Data.Product.Base using (; _×_)
open import Level using (Level)
open import Relation.Nullary.Negation.Core using (¬_)

IPred :  {i a} {I : Set i}  (I  Set a)  ( : Level)  Set _
IPred A  =  {i}  A i  Set 

module _ {i a} {I : Set i} {A : I  Set a} where

  infix 4 _∈_ _∉_

  _∈_ :  {}  (∀ i  A i)  IPred A   Set _
  x  P =  i  P (x i)

  _∉_ :  {}  (∀ i  A i)  IPred A   Set _
  t  P = ¬ (t  P)

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4