Sha256: a8d23ec6f3e80f3ce5711fac52a5110eca8bddff79d2ffc9a3ef1e32cb763131
Contents?: true
Size: 783 Bytes
Versions: 58
Compression:
Stored size: 783 Bytes
Contents
# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. module Enumerable def mapcat(initial = [], &block) reduce(initial) do |a, e| block.call(e).each do |x| a << x end a end end def pmapcat(initial = [], &block) intermediate = pmap(&block) intermediate.reduce(initial) do |a, e| e.each do |x| a << x end a end end def pselect(&block) intermediate = pmap(&block) zip(intermediate).select { |x| x[1] }.map(&:first) end def rjust(n, x) Array.new([0, n - length].max, x) + self end def ljust(n, x) dup.fill(x, length...n) end end
Version data entries
58 entries across 58 versions & 1 rubygems