Idris2Doc : Data.FVect.Capacity

Data.FVect.Capacity

(source)

Definitions

dataCapacity : Type->Type
  A representation of the remaining capacity an FVect has for storage.
A `Full` value has proof that there are `n` values in a vect with
capacity `n`.
A `NotFull` value has exactly what you need to cons an additional
value onto an FVect.

Totality: total
Visibility: public export
Constructors:
Full : (0_ : finToNatl=c) ->Capacity (FVectcle)
NotFull : (0_ : LT (finToNatlen) (Sn)) ->Capacity (FVect (Sn) lene)
capacity : (0_ : FVectcle) ->Capacity (FVectcle)
  Determine if the given FVect has more capacity for storage or not.

Visibility: export
capacity' : FVectcle->Capacity (FVectcle)
  Calculate if the given FVect has more capacity for storage or not.

Visibility: export