Sha256: b4a7a8c94bcbfb435e0c496c67dd8db93d72c274d0d8dc51b15703d97d3e24a4
Contents?: true
Size: 828 Bytes
Versions: 1
Compression:
Stored size: 828 Bytes
Contents
require 'darkext/numeric' require 'darkext/symbol' class Array # Rotates the array left by n elements def rotate(n = 1) return if self.size.zero? n.times { self.push(self.shift) } end # Rotates the array right by n elements def rotate_reverse(n = 1) return if self.size.zero? n.times { self.unshift(self.pop) } end # Sums the array def sum self.inject(:+) end # Finds the product of the array def product self.inject(:*) end # Collects the squares of each value in the array def squares self.map(&:square) end # Finds the sum of squares of the array def sum_of_squares self.squares.sum end # Picks a random value from the array def random self[rand(self.size)] end # Randomizes the array def randomize self.sort_by { rand } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
darkhelmet-darkext-0.0.2 | lib/darkext/array.rb |