Last Modified
2013-07-10 15:28:39 -0400
Requires

Description

The Insertion class inserts a value before or after another value in a list.

@example

Insertion.new([1, 2, 3], 4).before(3) # => [1, 2, 4, 3]