class ChunkyPNG::Canvas

def assert_x!(x)

Throws an exception if the x-coordinate is out of bounds.
def assert_x!(x)
  raise ChunkyPNG::OutOfBounds, "Column index #{x} out of bounds!" unless include_x?(x)
  return true
end