Sha256: ad2c67a83782b0d8e5f11c07d95202411a333c6e7596b0168d63b192b830af37

Contents?: true

Size: 148 Bytes

Versions: 1

Compression:

Stored size: 148 Bytes

Contents

module Ykk
  def ykk(*arys, &blk) # YKK: a better zipper
    return zip(*arys) unless block_given?
    zip(*arys).collect { |a| yield a }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
timeframe-0.0.1 lib/timeframe/ykk.rb