Sha256: 091a29b3e0e558764646e7e7092997d83d1120180b822e5a995376bcd3acd3b8
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
=begin rdoc Array extensions =end require "enumerator" class Array def to_os map {|a| a.to_os } end def histogram out = {} map do |ele| if out.has_key?(ele) out[ele] += 1 else out.merge!(ele => 1) end end out end def collect_with_index &block self.enum_for(:each_with_index).collect &block end def runnable(quiet=true) self.join(" \n ").runnable(quiet) end def nice_runnable(quiet=true) self.flatten.reject{|e| (e.nil? || e.empty?) }.join(" \n ").chomp.nice_runnable(quiet) end def to_string(pre="") map {|a| a.to_string(pre)}.join("\n") end def get_named(str="") map {|a| a.name == str ? a : nil }.reject {|a| a.nil? } end def respec_string(ns=[]) "'#{map {|e| e.to_option_string }.join("', '")}'" end # Example nodes.select_with_hash(:status=>'running') def select_with_hash(conditions={}) return self if conditions.empty? select do |node| conditions.any? do |k,v| ( node.has_key?(k) && node[k]==v ) or ( node.respond_to?(k) && node.send(k)==v ) end end end def wrapping_next(id) raise "Element #{id} not in array" unless index(id) index(id) >= size-1 ? at(0) : at(index(id)+1) end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
auser-poolparty-1.2.12 | lib/poolparty/core/array.rb |
fairchild-poolparty-1.2.12 | lib/poolparty/core/array.rb |