Module docstring
{"# Openness and closedness of a set
This file provides lemmas relating to the predicates IsOpen and IsClosed of a set endowed with
a topology.
Implementation notes
Topology in mathlib heavily uses filters (even more than in Bourbaki). See explanations in https://leanprover-community.github.io/theories/topology.html.
References
- [N. Bourbaki, General Topology][bourbaki1966]
- [I. M. James, Topologies and Uniformities][james1999]
Tags
topological space ","### Limits of filters in topological spaces
In this section we define functions that return a limit of a filter (or of a function along a
filter), if it exists, and a random point otherwise. These functions are rarely used in Mathlib,
most of the theorems are written using Filter.Tendsto. One of the reasons is that
Filter.limUnder f g = x is not equivalent to Filter.Tendsto g f (π x) unless the codomain is a
Hausdorff space and g has a limit along f.
"}