Ruby-将单个空键上的数组分组

时间:2019-05-31 09:52:01

标签: arrays ruby group-by grouping

我正在尝试使用如下所示的group_by方法将服务中单个空键上的数组分组

...

def process(array)
  if a_case
    partition = method(:general_entity)
  else
    partition = method(: other_entity)
  end

  array.group_by(&partition)
end

def general_entity(_cells)
  ""
end

def other_entity(_cells)
...

您认为general_entity方法中的这种方法可以安全使用吗?

如果您可以分享您的想法或提出更好的方法:D

0 个答案:

没有答案