Convergence in terms of filters #
The general notion of limit of a map with respect to filters on the source and target types
is Filter.Tendsto. It is defined in terms of the order and the push-forward operation.
For instance, anticipating on Topology.Basic, the statement: "if a sequence u converges to
some x and u n belongs to a set M for n large enough then x is in the closure of
M" is formalized as: Tendsto u atTop (𝓝 x) → (∀ᶠ n in atTop, u n ∈ M) → x ∈ closure M,
which is a special case of mem_closure_of_tendsto from Topology/Basic.
Alias of the forward direction of Filter.tendsto_iff_comap.
Alias of the reverse direction of Filter.tendsto_map'_iff.
If two filters are disjoint, then a function cannot tend to both of them along a non-trivial filter.
Alias of the reverse direction of Filter.map_mapsTo_Iic_iff_tendsto.
Alias of the reverse direction of Filter.map_mapsTo_Iic_iff_mapsTo.