Skip to content

Releases: DevL/Pyby

0.4.0

16 Apr 17:09
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

Adds support for the following:

  • Enumerable#count
  • Enumerable#find

0.3.0

11 Apr 17:56
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release

Adds support for the following:

  • Object#send
  • Enumerable#reject
  • Enumerable#inject with Enumerable#reduce as an alias

0.2.1

07 Apr 20:24
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release

Bug fix release to handle non-mapping Enumerables containing tuples, e.g. a list of tuples.

0.2.0

07 Apr 17:27
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Adds support to Enumerable (and hence EnumerableList and EnumerableDict) for filter/select.

0.1.0

07 Apr 17:26
Compare
Choose a tag to compare
0.1.0 Pre-release
Pre-release

Initial release into the wild.

Implements Enumerable, EnumerableList, EnumerableDict with support for:

  • collect/map (no args)
  • collect/map (callable args)
  • compact
  • each (no args)
  • each (callable arg)
  • first (no args)
  • first (n elements)
  • take

Also implements Enumerator with support for:

  • next
  • peek
  • rewind