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

Version Path
gooddata-2.1.0-java lib/gooddata/extensions/enumerable.rb
gooddata-2.1.0 lib/gooddata/extensions/enumerable.rb
gooddata-2.0.1-java lib/gooddata/extensions/enumerable.rb
gooddata-2.0.1 lib/gooddata/extensions/enumerable.rb
gooddata-2.0.0-java lib/gooddata/extensions/enumerable.rb
gooddata-2.0.0 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.6-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.6 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.5-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.5 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.4-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.4 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.3-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.3 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.2-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.2 lib/gooddata/extensions/enumerable.rb
gooddata-1.3.1-java lib/gooddata/extensions/enumerable.rb
gooddata-1.3.1 lib/gooddata/extensions/enumerable.rb