Flowdock
method

[]

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: CGI::QueryExtension::Value
[](idx, *args) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/cgi.rb, line 1151
      def [](idx, *args)
        if args.size == 0
          warn "#{caller(1)[0]}:CAUTION! cgi['key'] == cgi.params['key'][0]; if want Array, use cgi.params['key']"
          @params[idx]
        else
          super[idx,*args]
        end
      end
Register or log in to add new notes.