Module docstring
{"# Lattice structure on finite sets
This file puts a lattice structure on finite sets using the union and intersection operators.
For Finset α, where α is a lattice, see also Mathlib/Data/Finset/Lattice/Fold.lean.
Main declarations
There is a natural lattice structure on the subsets of a set.
In Lean, we use lattice notation to talk about things involving unions and intersections. See
Mathlib/Order/Lattice.lean. For the lattice structure on finsets, ⊥ is called bot with
⊥ = ∅ and ⊤ is called top with ⊤ = univ.
Finset.instHasSubsetFinset: Lots of API about lattices, otherwise behaves as one would expect.Finset.instUnionFinset: Definess ∪ t(ors ⊔ t) as the union ofsandt. SeeFinset.sup/Finset.biUnionfor finite unions.Finset.instInterFinset: Definess ∩ t(ors ⊓ t) as the intersection ofsandt. SeeFinset.inffor finite intersections.
Operations on two or more finsets
Finset.instUnionFinset: see \"The lattice structure on subsets of finsets\"Finset.instInterFinset: see \"The lattice structure on subsets of finsets\"
Tags
finite sets, finset
","### Lattice structure ","#### union "}