Idris2Doc : Libraries.Data.List01.Quantifiers

Libraries.Data.List01.Quantifiers

(source)

Definitions

dataAll : (0_ : (a->Type)) ->List01nea->Type
  A proof that all elements of a list satisfy a property. It is a list of
proofs, corresponding element-wise to the `List`.

Totality: total
Visibility: public export
Constructors:
Nil : Allp []
(::) : px->Allpxs->Allp (x::xs)
pushIn : (xs : List01nea) -> (0_ : Allpxs) ->List01ne (Subsetap)
  Push in the property from the list level with element level

Totality: total
Visibility: public export
pullOut : List01ne (Subsetap) ->Subset (List01nea) (Allp)
  Pull the elementwise property out to the list level

Totality: total
Visibility: public export