Project

General

Profile

Actions

Bug #7692

closed

Enumerator::Lazy#drop_while and take_while should require a block.

Added by marcandre (Marc-Andre Lafortune) about 11 years ago. Updated about 11 years ago.

Status:
Closed
Target version:
ruby -v:
r38800
Backport:
[ruby-core:51422]

Description

Enumerator::Lazy#drop_while and take_while should require a block.

Currently:

[1].lazy.drop_while.force # => LocalJumpError: no block given
[1].lazy.take_while.force # => LocalJumpError: no block given

After patch, these will raise an ArgumentError "tried to call lazy drop_while without a block"

Actions #1

Updated by marcandre (Marc-Andre Lafortune) about 11 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r38811.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


  • enumerator.c: Require block for Lazy#{take|drop}_while [Bug #7692]
Actions

Also available in: Atom PDF

Like0
Like0