refactor(library/data/set): expand set.lean to set directory
This commit is contained in:
parent
bebe8a4f17
commit
6596217a84
5 changed files with 22 additions and 5 deletions
|
@ -23,5 +23,5 @@ Constructors:
|
|||
* [subtype](subtype.lean)
|
||||
* [quotient](quotient/quotient.md)
|
||||
* [list](list/list.md)
|
||||
* [set](set.lean)
|
||||
* [set](set/set.md)
|
||||
* [vector](vector.lean)
|
|
@ -1,6 +1,9 @@
|
|||
--- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
||||
--- Released under Apache 2.0 license as described in the file LICENSE.
|
||||
--- Author: Jeremy Avigad
|
||||
/-
|
||||
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Module: data.default
|
||||
Author: Jeremy Avigad
|
||||
-/
|
||||
import .empty .unit .bool .num .string .nat .int
|
||||
import .prod .sum .sigma .option .subtype .quotient .list .set
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Copyright (c) 2014 Jeremy Avigad. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Module: data.set
|
||||
Module: data.set.basic
|
||||
Author: Jeremy Avigad, Leonardo de Moura
|
||||
-/
|
||||
import logic
|
8
library/data/set/default.lean
Normal file
8
library/data/set/default.lean
Normal file
|
@ -0,0 +1,8 @@
|
|||
/-
|
||||
Copyright (c) 2014 Jeremy Avigad. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Module: data.set.default
|
||||
Author: Jeremy Avigad
|
||||
-/
|
||||
import .basic
|
6
library/data/set/set.md
Normal file
6
library/data/set/set.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
data.set
|
||||
========
|
||||
|
||||
Subsets of an arbitrary type.
|
||||
|
||||
* [basic](basic.lean)
|
Loading…
Reference in a new issue