Added apply_transformation() as an extension point to be usable with other libraries:
(fluent_of(1,2,3)
.apply_transformation(more_itertools.windowed, 2)
.to_list()) # Produces [(1, 2), (2, 3)]
Breaking changes in version 2.0:
- Minimum required Python version is now 3.10 (up from 3.8)
Full Changelog: 1.2.0...2.0.0