Home | History | Annotate | Download | only in Support

Lines Matching full:yout

1178 operator<<(Output &yout, T &docList) {
1179 yout.beginDocuments();
1180 const size_t count = DocumentListTraits<T>::size(yout, docList);
1182 if ( yout.preflightDocument(i) ) {
1183 yamlize(yout, DocumentListTraits<T>::element(yout, docList, i), true);
1184 yout.postflightDocument();
1187 yout.endDocuments();
1188 return yout;
1195 operator<<(Output &yout, T &map) {
1196 yout.beginDocuments();
1197 if ( yout.preflightDocument(0) ) {
1198 yamlize(yout, map, true);
1199 yout.postflightDocument();
1201 yout.endDocuments();
1202 return yout;
1209 operator<<(Output &yout, T &seq) {
1210 yout.beginDocuments();
1211 if ( yout.preflightDocument(0) ) {
1212 yamlize(yout, seq, true);
1213 yout.postflightDocument();
1215 yout.endDocuments();
1216 return yout;
1223 operator<<(Output &yout, T &seq) {
1225 return yout;