Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Oliver Haag www.ohcon.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

redefine [] operator in ruby

// the parameter is written behind the operator in parantheses
// the parameter must be an integer/fixnum
//
// i.e.
// def [](chunk)
// @internal_id_hash[chunk.chunk_id]
// end
// is not possible


class ChunkList
  ..

  def [](chunk_id)
    @internal_id_hash[chunk_id]
  end
end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS