Flowdock
method

scalar

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: TreeBuilder
scalar(value, anchor, tag, plain, quoted, style) 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/tree_builder.rb, line 96
    def scalar value, anchor, tag, plain, quoted, style
      s = Nodes::Scalar.new(value,anchor,tag,plain,quoted,style)
      set_location(s)
      @last.children << s
      s
    end
Register or log in to add new notes.