Project

General

Profile

ActionsLike0

Feature #15918

open

Pattern matching for Set

Added by marcandre (Marc-Andre Lafortune) almost 6 years ago. Updated about 1 year ago.

Status:
Assigned
Target version:
-
[ruby-core:93075]

Description

Currently, Set does not respond to deconstruct. Shouldn't we implement it using to_a?

require 'set'
case Set[1, 2, 3]
in [1, 2, 3]
  p "match"
else
  p "no match"
end
# => "no match", should be "match"

Related issues 1 (0 open1 closed)

Related to Ruby - Feature #14912: Introduce pattern matching syntaxClosedktsj (Kazuki Tsujimoto)Actions
#4

Updated by jeremyevans0 (Jeremy Evans) almost 6 years ago

  • Tracker changed from Bug to Feature
  • Backport deleted (2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN)
#5

Updated by ktsj (Kazuki Tsujimoto) almost 6 years ago

Updated by ko1 (Koichi Sasada) over 5 years ago

  • Assignee set to ktsj (Kazuki Tsujimoto)
#7

Updated by hsbt (Hiroshi SHIBATA) about 1 year ago

  • Status changed from Open to Assigned
ActionsLike0

Also available in: Atom PDF