Skip to content

3.2.1

Compare
Choose a tag to compare
@Jeehut Jeehut released this 03 Oct 11:45
· 113 commits to main since this release

Changed

  • 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