Project

General

Profile

Actions

Bug #6152

closed

Enumerator::Lazy#take

Added by no6v (Nobuhiro IMAI) about 12 years ago. Updated about 12 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.0.0dev (2012-03-16 trunk 35049) [x86_64-linux]
Backport:
[ruby-dev:45370]

Description

=begin
以下はテストにある Step クラスですが、

class Step
include Enumerable
attr_reader :current, :args

def initialize(enum)
@enum = enum
@current = nil
@args = nil
end

def each(*args)
@args = args
@enum.each{|i| @current = i; yield i}
end
end

a = Step.new(1..10)
a.take(5).first # => 1
a.current # => 5
a.lazy.take(5).first # => 1
a.current # => 1
a.take(5).first(5) # => [1, 2, 3, 4, 5]
a.current # => 5
a.lazy.take(5).first(5) # => [1, 2, 3, 4, 5]
a.current # => 5
a.take(5).to_a # => [1, 2, 3, 4, 5]
a.current # => 5
a.lazy.take(5).to_a # => [1, 2, 3, 4, 5]
a.current # => 6

最後の例で current が 6 まで進むのは正しいでしょうか?
=end

Actions

Also available in: Atom PDF

Like0
Like0