stereomatching 17 Posting Whiz in Training

What is the meaning of attributes defined by boost::spirit?

namespace qi = boost::spirit::qi;
qi rule<std::string::const_iterator, double()> simple_rule =
qi::double_ >> *(',' >> qi::double_);

only double_, int_ equal to attributes
or ',' also is an attribute?

Thanks