Flowdock
method

scalar

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Coder
scalar(*args) public

No documentation

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

Hide source
# File ext/psych/lib/psych/coder.rb, line 24
    def scalar *args
      if args.length > 0
        warn "#{caller[0]}: Coder#scalar(a,b,c) is deprecated" if $VERBOSE
        @tag, @scalar, _ = args
        @type = :scalar
      end
      @scalar
    end
Register or log in to add new notes.