File: butlast.rb

package info (click to toggle)
ruby-powerpack 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 492 kB
  • sloc: ruby: 819; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
unless Array.method_defined? :butlast
  class Array
    # Returns a new array that has all the elements of the current but the last.
    #
    # @return [Array] a new array without the last element or an empty array if this
    #   array is empty
    #
    # @example
    #   [1, 2, 3].butlast #=> [1, 2]
    #   [].butlast #=> []
    def butlast
      self[0...-1]
    end
  end
end