mirror of
https://github.com/Smaug123/agdaproofs
synced 2025-10-14 16:08:39 +00:00
15 lines
334 B
Agda
15 lines
334 B
Agda
{-# OPTIONS --safe --warning=error --without-K #-}
|
||
|
||
open import Functions
|
||
open import Numbers.Naturals.Definition
|
||
open import Sets.FinSet.Definition
|
||
|
||
module Sets.Cardinality.Finite.Definition where
|
||
|
||
record FiniteSet {a : _} (A : Set a) : Set a where
|
||
field
|
||
size : ℕ
|
||
mapping : FinSet size → A
|
||
bij : Bijection mapping
|
||
|