rohd
rohd copied to clipboard
Allow swizzling on `Iterable` instead of just `List`
Motivation
Currently all the Swizzle
and swizzle
stuff operates/extensions on List
s. Why not on Iterable
so people don't need to do .toList()
before accessing it?
Desired solution
Make all "swizzling" work on Iterable
, including extension
s, for both Logic
and LogicValue
.
Alternatives considered
No response
Additional details
No response