Sha256: 4b87f8162921b317038f1e382ce426f5f309fc0bb8ebd17311b7dd22937417b8
Contents?: true
Size: 253 Bytes
Versions: 98
Compression:
Stored size: 253 Bytes
Contents
{ foo: "bar" }.each do |x, y| # @type var x1: Symbol # @type var y1: String x1 = x y1 = y end { foo: "bar" }.each.with_index do |x, y| # @type var a: Symbol # @type var b: String # @type var c: Integer a = x[0] b = x[1] c = y end
Version data entries
98 entries across 98 versions & 1 rubygems