我正在尝试使用如下所示的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