Commit 2024-10-31 06:53 ee376587
View on Github →chore: cleanup ContDiffWithinAt
API, to match the ContinuousAt
API (#18447)
Follow up to #17927. We make sure that the API for ContDiffWithinAt
matches the one for ContinuousAt
, adding a bunch of missing lemmas and renaming a few of them. Notably
ContinuousAt.continuousOn
becomescontinuousOn_of_forall_continuousAt
(as there is a lemmaContDiffAt.contDiffOn
with a completely different meaning)- Use assumptions
MapsTo f s t
instead ofs ⊆ f ⁻¹' t
in several statements - Add
of_eq
versions of all composition lemmas forContDiff
-type statements - Rename
ContDiff.comp_contDiffOn₂
toContDiff.comp₂_contDiffOn
, to follow the convention inContinuous
lemmas - Rename
ContDiffWithinAt.mono_of_mem
toContDiffWithinAt.mono_of_mem_nhdsWithin
to clarify what the lemma does - Change from
ContDiffWithinAt.congr_nhds
, taking an assumption𝓝[s] x = 𝓝[t] x
, toContDiffWithinAt.congr_set
, taking an assumptions =ᶠ[𝓝 x] t
. I have added deprecations to all lemmas with changed names.