You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Withable doesn't require an empty init() method anymore. Instead, it can be combined with any initializer. If you used the Foo { $0.bar = 5 } type of initializer, you will need to add ().with behind the type like so: Foo().with { $0.bar = 5 }.
Issue: #49 | PR: #50 | Author: Cihat Gündüz
Improved with new removeAll method, conformance to BidirectionalCollection, ExpressibleByArrayLiteral and removal of newElement label on `insert.
Author: Cihat Gündüz
Fixed
Made all functions accept throwing closures to allow wider usage cases for helper functions like .times etc.
Author: Cihat Gündüz