5 lines
139 B
Plaintext
5 lines
139 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: reduce(...) { |...| ... }
|
|
# group : collections
|
|
# --
|
|
reduce(${1:0}) { |${2:accumulator}, ${3:element}| $0 } |