class NIO::ByteBuffer

def mark

Mark a position to return to using the `#reset` method
def mark
  @mark = @position
  self
end