This commit is contained in:
Hiroshi SHIBATA 2024-09-19 16:23:08 +09:00
Родитель 59db92a1a1
Коммит 46ee05f05a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -551,7 +551,7 @@ class Set
# Deletes every element of the set for which block evaluates to
# false, and returns self. Returns an enumerator if no block is
# given.
def keep_if
def keep_if(&block)
block_given? or return enum_for(__method__) { size }
# Instead of directly using @hash.keep_if, perform enumeration
# using self.each that subclasses may override.